Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for greater (0.11 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    	template := &x509.CertificateRequest{
    		Subject: pkix.Name{
    			Organization: []string{"testing-org"},
    		},
    	}
    
    	_, key, err := ed25519.GenerateKey(rand.Reader)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrDER, err := x509.CreateCertificateRequest(rand.Reader, template, key)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrPemBlock := &pem.Block{
    		Type:  "CERTIFICATE REQUEST",
    		Bytes: csrDER,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

       * @param size the size of that array, list or string
       * @return the value of {@code index}
       * @throws IndexOutOfBoundsException if {@code index} is negative or is greater than {@code size}
       * @throws IllegalArgumentException if {@code size} is negative
       */
      @CanIgnoreReturnValue
      public static int checkPositionIndex(int index, int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

    namespace tensorflow {
    namespace ops {
    namespace {
    
    // Logical operations have no gradients.
    REGISTER_NO_GRADIENT_OP("Less");
    REGISTER_NO_GRADIENT_OP("LessEqual");
    REGISTER_NO_GRADIENT_OP("Greater");
    REGISTER_NO_GRADIENT_OP("GreaterEqual");
    REGISTER_NO_GRADIENT_OP("Equal");
    REGISTER_NO_GRADIENT_OP("ApproximateEqual");
    REGISTER_NO_GRADIENT_OP("NotEqual");
    REGISTER_NO_GRADIENT_OP("LogicalAnd");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			if event.Type == watch.Bookmark {
    				bookmarkReceived = true
    				// bookmark event has a RV greater than or equal to the before one
    				if rv < lastObservedResourceVersion {
    					t.Fatalf("Unexpected bookmark resourceVersion %v less than observed %v)", rv, lastObservedResourceVersion)
    				}
    			} else {
    				// non-bookmark event has a RV greater than anything before
    				if rv <= lastObservedResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    func TestXLStorageReadAll(t *testing.T) {
    	// create xlStorage test setup
    	xlStorage, _, err := newXLStorageTestSetup(t)
    	if err != nil {
    		t.Fatalf("Unable to create xlStorage test setup, %s", err)
    	}
    
    	// Create files for the test cases.
    	if err = xlStorage.MakeVol(context.Background(), "exists"); err != nil {
    		t.Fatalf("Unable to create a volume \"exists\", %s", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[VAL10:.*]] = "tf.Floor"(%[[VAL9]]) : (tensor<f32>) -> tensor<f32>
      // CHECK-DAG: %[[VAL11:.*]] = "tf.Sub"(%[[VAL9]], %[[VAL10]]) : (tensor<f32>, tensor<f32>) -> tensor<f32>
      // CHECK-DAG: %[[VAL12:.*]] = "tf.Greater"(%[[VAL11]], %[[VAL4]]) : (tensor<f32>, tensor<f32>) -> tensor<i1>
      // CHECK-DAG: %[[VAL13:.*]] = "tf.Equal"(%[[VAL11]], %[[VAL4]]) <{incompatible_shape_error = true}> : (tensor<f32>, tensor<f32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    						v1.ResourceMemory: *resource.NewQuantity(1024, resource.BinarySI),
    						v1.ResourcePods:   *resource.NewQuantity(110, resource.DecimalSI),
    					},
    				},
    			},
    		},
    		{
    			desc:        "podsPerCore greater than zero, but less than maxPods/cores",
    			node:        &v1.Node{},
    			maxPods:     10,
    			podsPerCore: 4,
    			machineInfo: &cadvisorapiv1.MachineInfo{
    				NumCores:       2,
    				MemoryCapacity: 1024,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    	// we are making a conservative decision: filters like resources and inter-pod
    	// anti-affinity are more likely to fail when the nominated pods are treated
    	// as running, while filters like pod affinity are more likely to fail when
    	// the nominated pods are treated as not running. We can't just assume the
    	// nominated pods are running because they are not running right now and in fact,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// that the scavenger should keep as a buffer space for the allocator.
    	// This constant is used when we do not have a memory limit set.
    	//
    	// The purpose of maintaining this overhead is to have a greater pool of
    	// unscavenged memory available for allocation (since using scavenged memory
    	// incurs an additional cost), to account for heap fragmentation and
    	// the ever-changing layout of the heap.
    	retainExtraPercent = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    will create the schema if it doesn't exist. Entries in the Users,
    Experiments, and Runs tables will be created automatically if they
    don't already exist.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top