Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for modes (0.35 sec)

  1. pkg/printers/internalversion/printers.go

    	if obj.Spec.PodInfoOnMount != nil {
    		podInfoOnMount = *obj.Spec.PodInfoOnMount
    	}
    	allModes := []string{}
    	for _, mode := range obj.Spec.VolumeLifecycleModes {
    		allModes = append(allModes, string(mode))
    	}
    	modes := strings.Join(allModes, ",")
    	if len(modes) == 0 {
    		modes = "<none>"
    	}
    
    	row.Cells = append(row.Cells, obj.Name, attachRequired, podInfoOnMount)
    	storageCapacity := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    	snis := []string{
    		model.BuildSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    		model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    		model.BuildSubsetKey(model.TrafficDirectionOutbound, "", nakedHost, httpsPort),
    		model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", nakedHost, httpsPort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // Go test runs in two different modes:
    //
    // The first, called local directory mode, occurs when go test is
    // invoked with no package arguments (for example, 'go test' or 'go
    // test -v'). In this mode, go test compiles the package sources and
    // tests found in the current directory and then runs the resulting
    // test binary. In this mode, caching (discussed below) is disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/component-model-gradle.png

    component-model-gradle.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 04:41:24 UTC 2024
    - 99.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		parentIsStd: parentIsStd,
    		mode:        mode,
    	}
    	r := resolvedImportCache.Do(importKey, func() resolvedImport {
    		var r resolvedImport
    		if cfg.ModulesEnabled {
    			r.dir, r.path, r.err = modload.Lookup(parentPath, parentIsStd, path)
    		} else if build.IsLocalImport(path) {
    			r.dir = filepath.Join(parentDir, path)
    			r.path = dirToImportPath(r.dir)
    		} else if mode&ResolveImport != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        write-cluster-name
        create-autoscaler-config
        create-master
        create-nodes-firewall
        create-nodes-template
        if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
          # Windows nodes take longer to boot and setup so create them first.
          create-windows-nodes
          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    function check-existing() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

        * Change eviction policies in NodeController:
          *  add a "partialDisruption" mode, when more than 33% of Nodes in the zone are not Ready
          *  add "fullDisruption" mode, when all Nodes in the zone are not Ready
        * Eviction behavior depends on the mode in which NodeController is operating:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * The deprecated kubelet --configure-cbr0 flag has been removed, and with that the "classic" networking mode as well.  If you depend on this mode, please investigate whether the other network plugins `kubenet` or `cni` meet your needs. ([#34906](https://github.com/kubernetes/kubernetes/pull/34906), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
        if use_kernel:
          model.einsum = model.einsum_with_kernel
          model_inputs = {'x': x}
        else:
          model.einsum = model.einsum_without_kernel
          model_inputs = {'x': x, 'y': y}
    
        saved_model_save.save(
            model, self._input_saved_model_path, signatures=model.einsum
        )
    
        signature_key = signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    	cb := NewClusterBuilder(newSidecarProxy(), nil, model.DisabledCache{})
    	mc := newClusterWrapper(&cluster.Cluster{
    		Name: "test-cluster",
    	})
    	cb.setUseDownstreamProtocol(mc)
    	return mc
    }
    
    func newSidecarProxy() *model.Proxy {
    	return &model.Proxy{Type: model.SidecarProxy, Metadata: &model.NodeMetadata{}}
    }
    
    func newGatewayProxy() *model.Proxy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top