Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for node_ (0.14 sec)

  1. prow/integ-suite-kind.sh

    export FAST_VM_BUILDS=true
    export ISTIO_DOCKER_BUILDER="${ISTIO_DOCKER_BUILDER:-crane}"
    
    PARAMS=()
    
    while (( "$#" )); do
      case "$1" in
        # Node images can be found at https://github.com/kubernetes-sigs/kind/releases
        # For example, kindest/node:v1.14.0
        --node-image)
          NODE_IMAGE=$2
          shift 2
        ;;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    	tests := []struct {
    		oldNode core.Node
    		node    core.Node
    		valid   bool
    	}{
    		{core.Node{}, core.Node{}, true},
    		{core.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo"}},
    			core.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "bar"},
    			}, false},
    		{core.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server.go

    		Use: "kube-scheduler",
    		Long: `The Kubernetes scheduler is a control plane process which assigns
    Pods to Nodes. The scheduler determines which Nodes are valid placements for
    each Pod in the scheduling queue according to constraints and available
    resources. The scheduler then ranks each valid Node and binds the Pod to a
    suitable Node. Multiple different schedulers may be used within a cluster;
    kube-scheduler is the reference implementation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // TODO(b/158266710): Support CPU MKL configurations.
    
    #define GEN_PASS_DEF_FUSEDKERNELMATCHERPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Optimizes TF computations by fusing subgraphs/nodes onto more efficient
    // implementations to decrease the number of operations needed to perform a
    // computation.
    struct FusedKernelMatcherPass
        : public impl::FusedKernelMatcherPassBase<FusedKernelMatcherPass> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/default_storage_factory_builder.go

    	{Group: "", Resource: "replicationcontrollers"}:     "controllers",
    	{Group: "", Resource: "endpoints"}:                  "services/endpoints",
    	{Group: "", Resource: "nodes"}:                      "minions",
    	{Group: "", Resource: "services"}:                   "services/specs",
    	{Group: "extensions", Resource: "ingresses"}:        "ingress",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

        // Skip the original dequant op and connect the op before dequantize to the
        // user op.
        user_op->setOperand(user_idx, op_before_dequantize);
    
        // Wire input/output nodes.
        new_dequantize_op->setOperand(0, user_op->getResult(0));
        new_dequantize_op->getResult(0).setType(user_op->getResult(0).getType());
        user_op->getResult(0).replaceAllUsesExcept(new_dequantize_op->getResult(0),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        # Settings related to the untaint controller
        # This controller will remove `cni.istio.io/not-ready` from nodes when the istio-cni pod becomes ready
        # It should be noted that cluster operator/owner is responsible for having the taint set by their infrastructure provider when new nodes are added to the cluster; the untaint controller does not taint nodes
        taint:
          # Controls whether or not the untaint controller is active
          enabled: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

      }
      StringRef getDescription() const final {
        return "Add QuantizationUnitLoc to quantizable layers.";
      }
    
     private:
      void runOnOperation() override;
    };
    
    // TF graph nodes are imported with one of following location patterns:
    //   FusedLoc[NameLoc(op_type:), ..., NameLoc(node_name@func_name)] or
    //   FusedLoc[NameLoc(op_type:), ..., CallSiteLoc(node_name@func_name)]. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. cmd/consolelogger.go

    }
    
    // HasLogListeners returns true if console log listeners are registered
    // for this node or peers
    func (sys *HTTPConsoleLoggerSys) HasLogListeners() bool {
    	return sys != nil && sys.pubsub.Subscribers() > 0
    }
    
    // Subscribe starts console logging for this node.
    func (sys *HTTPConsoleLoggerSys) Subscribe(subCh chan log.Info, doneCh <-chan struct{}, node string, last int, logKind madmin.LogMask, filter func(entry log.Info) bool) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

            def tasks = dependencies.getDependencies(Stub(Task))
            assert tasks.size() == 1
            return tasks.asList()[0]
        }
    
        @Issue("GRADLE-3523")
        def "does not prevent build authors to register root nodes of type File"() {
            when:
            project.pluginManager.apply(RootFileRules)
            project.pluginManager.apply(NativeComponentModelPlugin)
            project.model {
                components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top