Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for leastOf (0.17 sec)

  1. pkg/kubelet/kubelet.go

    	serviceLister serviceLister
    	// serviceHasSynced indicates whether services have been sync'd at least once.
    	// Check this before trusting a response from the lister.
    	serviceHasSynced cache.InformerSynced
    	// nodeLister knows how to list nodes
    	nodeLister corelisters.NodeLister
    	// nodeHasSynced indicates whether nodes have been sync'd at least once.
    	// Check this before trusting a response from the node lister.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // to bw. is11 is whether the HTTP request is HTTP/1.1. false means HTTP/1.0.
    // code is the response status code.
    // scratch is an optional scratch buffer. If it has at least capacity 3, it's used.
    func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {
    	if is11 {
    		bw.WriteString("HTTP/1.1 ")
    	} else {
    		bw.WriteString("HTTP/1.0 ")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	// If cgo is involved, reproducibility is already pretty well ruined anyway,
    	// given that we aren't stamping header or library versions.
    	//
    	// TODO(bcmills): perhaps we could at least parse the flags and stamp the
    	// subset of flags that are known not to be paths?
    	if cfg.BuildContext.CgoEnabled && !cfg.BuildTrimpath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    function create-cluster-autoscaler-mig-config() {
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MIN_NODES} -lt 0 ]]; then
        echo "AUTOSCALER_MIN_NODES must be greater or equal 0"
        exit 2
      fi
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			expectedError: fmt.Errorf("[memorymanager] you should specify the system reserved memory"),
    		},
    		{
    			description: "should succeed, when at least one NUMA node has reserved memory",
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{},
    				1: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_OperandIsRankedAndHasDimPred<n, dim>,
      CPred<"$_op.getOperand(" # n # ").getType().cast<ShapedType>()"
          ".getShape()[" # dim # " ] <= " # size>]>;
    
    // Returns true if the n-th operand has unknown rank or at least rank m.
    class TFL_OperandHasAtleastRank<int n, int m> :
      PredOpTrait<"operand " # n # " is " # m # "-D",
        Or<[CPred<"$_op.getOperand(" # n # ").getType().isa<UnrankedTensorType>()">,
          CPred<"$_op.getOperand(" # n #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    	count, err := testutil.GetHistogramMetricCount(m)
    	if err != nil {
    		t.Errorf("Failed to get %s sampleCount, err: %v", metrics.PluginExecutionDuration.Name, err)
    	}
    	if count == 0 {
    		t.Error("Expect at least 1 sample")
    	}
    	value, err := testutil.GetHistogramMetricValue(m)
    	if err != nil {
    		t.Errorf("Failed to get %s value, err: %v", metrics.PluginExecutionDuration.Name, err)
    	}
    	checkLatency(t, value)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

          "important to you");
      return EmptyWhileParams();
    #else
      if (ninputs == 0) {
        status->status =
            InvalidArgument("TF_NewWhile() must be passed at least one input");
        return EmptyWhileParams();
      }
    
      TF_Graph* cond_graph = TF_NewGraph();
      TF_Graph* body_graph = TF_NewGraph();
      cond_graph->parent = g;
      cond_graph->parent_inputs = inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status_test.go

    	assert.Error(t, kubelet.updateNodeStatus(ctx))
    
    	// should have attempted multiple times
    	if actualAttempts := atomic.LoadInt64(&attempts); actualAttempts < nodeStatusUpdateRetry {
    		t.Errorf("Expected at least %d attempts, got %d", nodeStatusUpdateRetry, actualAttempts)
    	}
    	// should have gotten multiple failure callbacks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .build(),
        )
    
        // At least three request/response pairs are required because after the first request is cached
        // a different execution path might be taken. Thus modifications to the cache applied during
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top