Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 825 for suffixed (0.17 sec)

  1. build/README.md

    `rsync` is used transparently behind the scenes to efficiently move data in and out of the container.  This will use an ephemeral port picked by Docker.  You can modify this by setting the `KUBE_RSYNC_PORT` env variable.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    	// If name has enough dots, try unsuffixed first.
    	if hasNdots && !avoidDNS(name) {
    		names = append(names, name)
    	}
    	// Try suffixes that are not too long (see isDomainName).
    	for _, suffix := range conf.search {
    		fqdn := name + suffix
    		if !avoidDNS(fqdn) && len(fqdn) <= 254 {
    			names = append(names, fqdn)
    		}
    	}
    	// Try unsuffixed, if not tried first above.
    	if !hasNdots && !avoidDNS(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"() <{value = dense<1.000000e+00> : tensor<8xf32>}>
    // Check that the variable's shared_name contains the fused loc's items joined
    // by the delimiter "_" and suffixed with a number.
    // CHECK-DAG: %[[VAR_HANDLE_0:.*]] = "tf.VarHandleOp"() {{.*shared_name = "apple_banana_0".*}}
    // CHECK: "tf.AssignVariableOp"(%[[VAR_HANDLE_0]], %[[CST_0]])
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    	}()
    
    	if len(key.checksum) == 0 && strings.HasPrefix(key.downloadURL, ociURLPrefix) {
    		if d, err := name.NewDigest(key.downloadURL[len(ociURLPrefix):]); err == nil {
    			// If there is no checksum and the digest is suffixed in URL, use the digest.
    			dstr := d.DigestStr()
    			if strings.HasPrefix(dstr, sha256SchemePrefix) {
    				key.checksum = dstr[len(sha256SchemePrefix):]
    			}
    			// For other digest scheme, give up to use cache.
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cluster/common.sh

      get-kubeconfig-user-basicauth "${user}"
    
      if [[ -z "${KUBE_USER:-}" || -z "${KUBE_PASSWORD:-}" ]]; then
        # kube-up stores username/password in a an additional kubeconfig section
        # suffixed with "-basic-auth". Cloudproviders like GKE store in directly
        # in the top level section along with the other credential information.
        # TODO: Handle this uniformly, either get rid of "basic-auth" or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/types.go

    }
    
    // UnsafePointer is an atomically accessed unsafe.Pointer value.
    //
    // Note that because of the atomicity guarantees, stores to values
    // of this type never trigger a write barrier, and the relevant
    // methods are suffixed with "NoWB" to indicate that explicitly.
    // As a result, this type should be used carefully, and sparingly,
    // mostly with values that do not live in the Go heap anyway.
    //
    // An UnsafePointer must not be copied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			"Possible values: "+strings.Join(tlsPossibleVersions, ", "))
    
    	fs.Var(cliflag.NewNamedCertKeyArray(&s.SNICertKeys), "tls-sni-cert-key", ""+
    		"A pair of x509 certificate and private key file paths, optionally suffixed with a list of "+
    		"domain patterns which are fully qualified domain names, possibly with prefixed wildcard "+
    		"segments. The domain patterns also allow IP addresses, but IPs should only be used if "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  8. pkg/kube/util.go

    				deployMeta.Name = pod.Labels["deploymentconfig"]
    				typeMetadata.Kind = "DeploymentConfig"
    			} else if typeMetadata.Kind == "Job" {
    				// If job name suffixed with `-<digit-timestamp>`, where the length of digit timestamp is 8~10,
    				// trim the suffix and set kind to cron job.
    				if jn := cronJobNameRegexp.FindStringSubmatch(controllerRef.Name); len(jn) == 2 {
    					deployMeta.Name = jn[1]
    					typeMetadata.Kind = "CronJob"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/wasm/cache_test.go

    			},
    			wantFileName:    ociWasmFile,
    			wantVisitServer: true,
    		},
    		{
    			name: "cache hit for oci url suffixed by digest",
    			initialCachedModules: map[moduleKey]cacheEntry{
    				{name: moduleNameFromURL(ociURLWithTag), checksum: dockerImageDigest}: {modulePath: ociWasmFile},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. hack/lib/util.sh

    # * default behavior for only a group: experimental -> apis/experimental
    # * Special handling for empty group: v1 -> api/v1, unversioned -> api/unversioned
    # * Special handling for groups suffixed with ".k8s.io": foo.k8s.io/v1 -> apis/foo/v1
    # * Very special handling for when both group and version are "": / -> api
    #
    # $KUBE_ROOT must be set.
    kube::util::group-version-to-pkg-path() {
      local group_version="$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top