Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 177 for greatest (0.23 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

          Iterable<E> iterable, Class<E> elementType) {
        EnumSet<E> set = EnumSet.noneOf(elementType);
        Iterables.addAll(set, iterable);
        return set;
      }
    
      // HashSet
    
      /**
       * Creates a <i>mutable</i>, initially empty {@code HashSet} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSet#of()} instead. If {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
       * getters just return the value. This {@code Future} can't be canceled or timed out and its
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (BRC {s390x.Greater}        (CMPconst  x [-129]) yes no) => (CGIJ {s390x.GreaterOrEqual} x [-128] yes no)
    (BRC {s390x.Greater}        (CMPWconst x [-129]) yes no) => (CIJ  {s390x.GreaterOrEqual} x [-128] yes no)
    (BRC {s390x.GreaterOrEqual} (CMPconst  x [ 128]) yes no) => (CGIJ {s390x.Greater}        x [ 127] yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

          Iterable<E> iterable, Class<E> elementType) {
        EnumSet<E> set = EnumSet.noneOf(elementType);
        Iterables.addAll(set, iterable);
        return set;
      }
    
      // HashSet
    
      /**
       * Creates a <i>mutable</i>, initially empty {@code HashSet} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSet#of()} instead. If {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Invalid(field.NewPath("spec").Child("limited").Child("limitResponse").Child("queuing").Child("queues"), int32(math.MaxInt32), "must not be greater than 10000000"),
    		},
    	}, {
    		name: "customized priority level w/ handSize=2 and queues=10^7 should work",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
       * getters just return the value. This {@code Future} can't be canceled or timed out and its
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					Type: "integer",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self > 0",
    							Message: "scoped field should be greater than 0",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid for number",
    			input: schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return BroadcastCompatible(l, r);
        }
      }];
    }
    
    def TF_EmptyTensorListOp : TF_TensorListInitOp<"EmptyTensorList"> {
      let summary = "Creates and returns an empty tensor list.";
    
      let description = [{
    All list elements must be tensors of dtype element_dtype and shape compatible
    with element_shape.
    
    handle: an empty tensor list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// TODO(b/139060984): After all filesystems are converted, revisit note.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
      void (*cleanup)(TF_Filesystem* filesystem);
    
      /// Creates a new random access read-only file from given `path`.
      ///
      /// After this call `file` may be concurrently accessed by multiple threads.
      ///
      /// Plugins:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      $start=ConvertTo_DottedDecimalIP($network+3)
      return $start
    }
    
    # Configures HNS on the Windows node to enable Kubernetes networking:
    #   - Creates the "management" interface associated with an initial HNS network.
    #   - Creates the HNS network $env:KUBE_NETWORK for pod networking.
    #   - Creates an HNS endpoint for pod networking.
    #   - Adds necessary routes on the management interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top