Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 168 for ekvs (0.1 sec)

  1. ci/official/utilities/setup.sh

      # Source the default ci values
      source ./ci/official/envs/ci_default
    
      # TODO(angerson) write this documentation
      # Sources every env, in order, from the comma-separated list "TFCI"
      # Assumes variables will resolve themselves correctly.
      set +u
      for env_file in ${TFCI//,/ }; do
        source "./ci/official/envs/$env_file"
      done
      set -u
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if opts.Predicate.Empty() {
    			growSlice(v, len(getResp.Kvs))
    		} else {
    			growSlice(v, 2048, len(getResp.Kvs))
    		}
    
    		// take items from the response until the bucket is full, filtering as we go
    		for i, kv := range getResp.Kvs {
    			if paging && int64(v.Len()) >= opts.Predicate.Limit {
    				hasMore = true
    				break
    			}
    			lastKey = kv.Key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/pod_devices.go

    		// Environment variables
    		// Mount points
    		// Device files
    		// Container annotations
    		// CDI device IDs
    		// These artifacts are per resource per container.
    		// Updates RunContainerOptions.Envs.
    		for k, v := range resp.Envs {
    			if e, ok := envsMap[k]; ok {
    				klog.V(4).InfoS("Skip existing env", "envKey", k, "envValue", v)
    				if e != v {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. internal/config/legacy.go

    // SetRegion - One time migration code needed, for migrating from older config to new for server Region.
    func SetRegion(c Config, name string) {
    	if name == "" {
    		return
    	}
    	c[RegionSubSys][Default] = KVS{
    		KV{
    			Key:   RegionName,
    			Value: name,
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 19 20:27:06 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. internal/config/storageclass/legacy.go

    	if len(cfg.Standard.String()) == 0 && len(cfg.RRS.String()) == 0 {
    		// Do not enable storage-class if no settings found.
    		return
    	}
    	s[config.StorageClassSubSys][config.Default] = config.KVS{
    		config.KV{
    			Key:   ClassStandard,
    			Value: cfg.Standard.String(),
    		},
    		config.KV{
    			Key:   ClassRRS,
    			Value: cfg.RRS.String(),
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. ci/official/README.md

    ## TensorFlow's Official CI and Build/Test Scripts
    
    TensorFlow's official CI jobs run the scripts in this folder. Our internal CI
    system, Kokoro, schedules our CI jobs by combining a build script with a file
    from the `envs` directory that is filled with configuration options:
    
    -   Nightly jobs (Run nightly on the `nightly` branch)
        -   Uses `wheel.sh`, `libtensorflow.sh`, `code_check_full.sh`
    -   Continuous jobs (Run on every GitHub commit)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. ci/official/upload.sh

      # $TF_VER_FULL will resolve to e.g. "2.15.0-rc2". Since $TF_VER_FULL comes
      # from get_versions.sh, which must be run *after* update_version.py, FINAL_URI
      # can't be set inside the rest of the _upload envs.
      FINAL_URI="$TFCI_ARTIFACT_FINAL_GCS_URI/$TF_VER_FULL"
      gsutil -m rsync -d -r "$DOWNLOADS" "$FINAL_URI"
    
      # Also mirror the latest-uploaded folder to the "latest" directory.
      # GCS does not support symlinks.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iws.xml

          <option name="ENABLE_SWING_INSPECTOR" value="false"/>
          <option name="ENV_VARIABLES"/>
          <option name="PASS_PARENT_ENVS" value="true"/>
          <module name=""/>
          <envs/>
          <method>
            <option name="BuildArtifacts" enabled="false"/>
            <option name="Make" enabled="true"/>
          </method>
        </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/storage/objectreader.go

    	if err != nil {
    		return nil, fmt.Errorf("error getting storage object %s, %s from etcd at key %s: %v", ns, name, key, err)
    	}
    	if len(resp.Kvs) == 0 {
    		return nil, fmt.Errorf("no storage object found for %s, %s in etcd for key %s", ns, name, key)
    	}
    	raw := resp.Kvs[0].Value
    	u := &unstructured.Unstructured{Object: map[string]interface{}{}}
    	if err := json.Unmarshal(raw, u); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customWorkspace.xml

          <option name="ENABLE_SWING_INSPECTOR" value="false" />
          <option name="ENV_VARIABLES" />
          <option name="PASS_PARENT_ENVS" value="true" />
          <module name="" />
          <envs />
          <method>
            <option name="BuildArtifacts" enabled="false" />
            <option name="Make" enabled="true" />
          </method>
        </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top