Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello, I Believe You Have A Bug In

Hello,

I believe you have a bug in https://github.com/allegroai/clearml-agent/blob/master/docker/services/entrypoint.sh#L20

  • The shebang says /bin/sh
  • But line 20 uses [[ ]] testing operator, which sh does not implement .
    I suggest either switching from [[ ]] t to [ ] or switching from sh shell to bash
  
  
Posted one year ago
Votes Newest

Answers 3


I tried to build allegroai/clearml-agent-services on my laptop with ubuntu:22.04 and it failed

  
  
Posted one year ago

Hi @<1523701624541810688:profile|RotundHedgehog76> , do you have some documentation on this?

  
  
Posted one year ago

I see, thanks for reporting this! I guess it should be an easy fix. Can you please open a Github issue to follow up on this?

  
  
Posted one year ago
617 Views
3 Answers
one year ago
one year ago
Tags