Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for modes (0.09 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. 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)
  8. 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)
  9. pilot/pkg/networking/core/cluster_test.go

    	return buildSniTestClustersWithMetadata(t, sniValue, model.SidecarProxy, &model.NodeMetadata{})
    }
    
    func buildSniDnatTestClustersForGateway(t *testing.T, sniValue string) []*cluster.Cluster {
    	return buildSniTestClustersWithMetadata(t, sniValue, model.Router, &model.NodeMetadata{})
    }
    
    func buildSniTestClustersWithMetadata(t testing.TB, sniValue string, typ model.NodeType, meta *model.NodeMetadata) []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. fastapi/routing.py

            response_fields = {}
            for additional_status_code, response in self.responses.items():
                assert isinstance(response, dict), "An additional response must be a dict"
                model = response.get("model")
                if model:
                    assert is_body_allowed_for_status_code(
                        additional_status_code
                    ), f"Status code {additional_status_code} must not have a response body"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
Back to top