Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for ekvs (0.01 sec)

  1. ci/official/envs/linux_x86_tpu

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_x86
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --config release_cpu_linux --config=tpu"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_tpu
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Feb 19 19:24:29 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. cmd/object-lambda-handlers_test.go

    			cfg := config.New()
    			cfg[config.LambdaWebhookSubSys] = map[string]config.KVS{
    				functionID: {
    					{Key: "endpoint", Value: lambdaServer.URL},
    					{Key: "enable", Value: config.EnableOn},
    				},
    			}
    			cfg[config.APISubSys] = map[string]config.KVS{
    				"api": {
    					{Key: "gzip", Value: config.EnableOff},
    				},
    			}
    
    			var err error
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jul 18 21:56:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. 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: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Mar 04 22:39:12 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. cmd/bootstrap-peer-server.go

    	"MINIO_OPERATOR_VERSION":       {},
    	"MINIO_VSPHERE_PLUGIN_VERSION": {},
    	"MINIO_CI_CD":                  {},
    }
    
    func getServerSystemCfg() *ServerSystemConfig {
    	envs := env.List("MINIO_")
    	envValues := make(map[string]string, len(envs))
    	for _, envK := range envs {
    		// skip certain environment variables as part
    		// of the whitelist and could be configured
    		// differently on each nodes, update skipEnvs()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. cmd/postpolicyform.go

    			// This is a JSON object type (that preserves key order)
    			kvs, ok := mv.Value.(jstream.KVS)
    			if ok {
    				for _, kv := range kvs {
    					if sset.Contains(kv.Key) {
    						// Reject duplicate conditions or expiration.
    						return nil, fmt.Errorf("input policy has multiple %s, please fix your client code", kv.Key)
    					}
    					sset.Add(kv.Key)
    				}
    			}
    			e.Encode(kvs)
    		}
    	}
    	return &buf, d.Err()
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. ci/official/envs/linux_arm64_onednn

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_arm64
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Feb 06 19:26:00 UTC 2024
    - 810 bytes
    - Viewed (0)
  7. ci/official/envs/linux_arm64_cross_compile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_arm64
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --config cross_compile_linux_arm64 --repo_env=USE_PYWRAP_RULES=True"
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Apr 14 17:26:43 UTC 2025
    - 942 bytes
    - Viewed (0)
  8. ci/official/utilities/setup_docker.sh

          --env-file "$env_file" \
          "$TFCI_DOCKER_IMAGE" \
        bash
    
      if [[ "$is_windows" == true ]]; then
        # Allow requests from the container.
        # Additional setup is contained in ci/official/envs/rbe.
        CONTAINER_IP_ADDR=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' tf)
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Jan 09 18:37:25 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  9. 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: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. cmd/etcd.go

    	if err != nil {
    		etcdLogOnceIf(ctx, err, "etcd-retrieve-keys")
    		return nil, etcdErrToErr(err, client.Endpoints())
    	}
    	if resp.Count == 0 {
    		return nil, errConfigNotFound
    	}
    	for _, ev := range resp.Kvs {
    		if string(ev.Key) == key {
    			return ev.Value, nil
    		}
    	}
    	return nil, errConfigNotFound
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top