Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for leastOf (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/eviction/eviction_manager_test.go

    	thresholdNotifier.EXPECT().Description().Return("mock thresholdNotifier").Times(1)
    	manager.thresholdNotifiers = []ThresholdNotifier{thresholdNotifier}
    
    	// The UpdateThreshold method should be called because at least notifierRefreshInterval time has passed.
    	// The Description method should be called because UpdateThreshold returned an error
    	fakeClock.Step(2 * notifierRefreshInterval)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        // Connection is pooled!
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      @Test
      fun streamDiscardingIsTimely() {
        // This response takes at least a full second to serve: 10,000 bytes served 100 bytes at a time.
        server.enqueue(
          MockResponse.Builder()
            .body(Buffer().write(ByteArray(10000)))
            .throttleBody(100, 10, TimeUnit.MILLISECONDS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def LowerQuantizedPass : Pass<"tf-lower-quantized", "mlir::func::FuncOp"> {
      let summary = "Lowers ops that require quantized input or output.";
    
      let description = [{
        This pass rewrites all ops that have at least one input or output that must
        be a quantized type to ops whose inputs and outputs allow non-quantized
        types. Examples of quantized types are TF_Qint8 or TF_Quint8.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top