Search Options

Results per page
Sort
Preferred Languages
Advance

Results 701 - 710 of 840 for f$ (0.02 sec)

  1. docs/site-replication/run-sse-kms-object-replication.sh

    echo "done"
    
    if [ ! -f ./mc ]; then
    	echo -n "Downloading MinIO client ..."
    	wget -O mc https://dl.min.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    	echo "done"
    fi
    
    export MC_HOST_minio1=https://minio:minio123@localhost:9001
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. helm-releases/minio-4.1.0.tgz

    $MINIO_ACCESSKEY_SECRETKEY_TMP) > /dev/null 2>&1) return $? } # createUser ($policy) createUser() { POLICY=$1 #check accessKey_and_secretKey_tmp file if [[ ! -f $MINIO_ACCESSKEY_SECRETKEY_TMP ]];then echo "credentials file does not exist" return 1 fi if [[ $(cat $MINIO_ACCESSKEY_SECRETKEY_TMP|wc -l) -ne 2 ]];then echo "credentials file is invalid" rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP return 1 fi USER=$(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP) # Create the user if it does not exist if ! checkUserExists ;...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 24 20:37:05 UTC 2022
    - 20K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

        case tensorflow::AttrValue::kI:
          TFE_OpSetAttrInt(op, attr_name, static_cast<int64_t>(default_value.i()));
          break;
        case tensorflow::AttrValue::kF:
          TFE_OpSetAttrFloat(op, attr_name, default_value.f());
          break;
        case tensorflow::AttrValue::kB:
          TFE_OpSetAttrBool(op, attr_name, default_value.b());
          break;
        case tensorflow::AttrValue::kType:
          TFE_OpSetAttrType(op, attr_name,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/settings.md

    For example, if you have a function:
    
    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
        return f"Hello {salutation} {name}"
    ```
    
    your program could execute like this:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    participant execute as Execute function
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                        && responseData.getContentLength() <= fessConfig.getCrawlerDocumentCacheMaxSizeAsInteger().longValue()) {
    
                    final String cache = content.trim().replaceAll("[ \\t\\x0B\\f]+", " ");
                    // text cache
                    putResultDataBody(dataMap, fessConfig.getIndexFieldCache(), cache);
                    putResultDataBody(dataMap, fessConfig.getIndexFieldHasCache(), Constants.TRUE);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. cmd/metacache-stream.go

    func (w *metacacheBlockWriter) Close() error {
    	w.wg.Wait()
    	return w.streamErr
    }
    
    type metacacheBlock struct {
    	data  []byte
    	n     int
    	First string `json:"f"`
    	Last  string `json:"l"`
    	EOS   bool   `json:"eos,omitempty"`
    }
    
    func (b metacacheBlock) headerKV() map[string]string {
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	v, err := json.Marshal(b)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/bootstrap.min.js.map

    ,UAAE6C,GAAGoF,IAG1BhC,GAAoB,SAOpBud,GAAkB,WAGlBC,GAA0B,oBAQ1Bnb,GAAU,CACdsJ,OAAQ,GACR8R,OAAQ,OACR/f,OAAQ,IAGJkF,GAAc,CAClB+I,OAAQ,SACR8R,OAAQ,SACR/f,OAAQ,oBAOJggB,cACJ,SAAYpkB,IAAS2B,GAAQ,IAAA+B,EAAAC,KAC3BA,KAAKkB,SAAW7E,EAChB2D,KAAK0gB,eAAqC,SAApBrkB,EAAQiI,QAAqBC,OAASlI,EAC5D2D,KAAKwG,QAAUxG,KAAKyG,WAAWzI,GAC/BgC,KAAKsM,UAAetM,KAAKwG,QAAQ/F,OAAbT,cACKA,KAAKwG,QAAQ/F,OADlBT,qBAEKA,KAAKwG,QAAQ/F,OAAb,kBACzBT,KAAK2gB,SAAW,GAChB3gB,KAAK4gB,SAAW,GAChB5gB,KAAK6gB,cAAgB,KACrB7gB,KAAK8gB,cAAgB,EAErB...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 180.9K bytes
    - Viewed (0)
  8. docs/recipes.md

        ```
    
    To prevent a response from using the cache, use [`CacheControl.FORCE_NETWORK`](http://square.github.io/okhttp/4.x/okhttp/okhttp3/-cache-control/-f-o-r-c-e_-n-e-t-w-o-r-k/). To prevent it from using the network, use [`CacheControl.FORCE_CACHE`](http://square.github.io/okhttp/4.x/okhttp/okhttp3/-cache-control/-f-o-r-c-e_-c-a-c-h-e/). Be warned: if you use `FORCE_CACHE` and the response requires the network, OkHttp will return a `504 Unsatisfiable Request` response.
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String TRUE = "true";
    
        public static final String FALSE = "false";
    
        public static final Boolean T = true;
    
        public static final Boolean F = false;
    
        public static final String SCORE = "score";
    
        public static final String SEARCHER = "searcher";
    
        public static final String ON = "on";
    
        public static final String READY = "ready";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/HashCode.java

        }
        return fromBytesNoCopy(bytes);
      }
    
      private static int decode(char ch) {
        if (ch >= '0' && ch <= '9') {
          return ch - '0';
        }
        if (ch >= 'a' && ch <= 'f') {
          return ch - 'a' + 10;
        }
        throw new IllegalArgumentException("Illegal hexadecimal character: " + ch);
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top