Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 621 for methods_ (0.18 sec)

  1. guava/src/com/google/common/collect/Maps.java

       * iterators that don't support {@code remove()}, but all other methods are supported by the map
       * and its views. When given a key that doesn't satisfy the predicate, the map's {@code put()} and
       * {@code putAll()} methods throw an {@link IllegalArgumentException}.
       *
       * <p>When methods such as {@code removeAll()} and {@code clear()} are called on the filtered map
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen.cc

    // XlaCompiledCpuFunction class with statically type-safe arg and result
    // methods. Usage example:
    //
    //   {{CLASS}} computation;
    //   // ...set args using computation.argN methods
    //   CHECK(computation.Run());
    //   // ...inspect results using computation.resultN methods
    //
    // The Run method invokes the actual computation, with inputs read from arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen_test_h.golden

    // XlaCompiledCpuFunction class with statically type-safe arg and result
    // methods. Usage example:
    //
    //   MyClass computation;
    //   // ...set args using computation.argN methods
    //   CHECK(computation.Run());
    //   // ...inspect results using computation.resultN methods
    //
    // The Run method invokes the actual computation, with inputs read from arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

        public TestLauncher withJvmTestMethods(String testClass, String... methods) {
            withJvmTestMethods(testClass, Arrays.asList(methods));
            return this;
        }
    
        @Override
        public TestLauncher withJvmTestMethods(final String testClass, Iterable<String> methods) {
            List<InternalJvmTestRequest> newRequests = CollectionUtils.collect(methods, new InternalTransformer<InternalJvmTestRequest, String>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       {@code cls}, no test is performed.
       *   <li>Equality test is not performed on method return values unless the method is a non-private
       *       static factory method whose return type is {@code cls} or {@code cls}'s subtype.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

        Interface for ops that are stateful and need to identify stateful operands.
    
        Stateful operands correspond to TF's variables semantics. An op that has 1
        or more stateful operands is a stateful op.
      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of stateful operands.}],
          "std::vector<int>", "GetStatefulOperands", (ins)
        >,
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       {@code cls}, no test is performed.
       *   <li>Equality test is not performed on method return values unless the method is a non-private
       *       static factory method whose return type is {@code cls} or {@code cls}'s subtype.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. src/go/types/resolver.go

    	// Now that we have all package scope objects and all methods,
    	// associate methods with receiver base type name where possible.
    	// Ignore methods that have an invalid receiver. They will be
    	// type-checked later, with regular functions.
    	if methods == nil {
    		return // nothing to do
    	}
    	check.methods = make(map[*TypeName][]*Func)
    	for i := range methods {
    		m := &methods[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver.go

    		}
    	}
    
    	// Now that we have all package scope objects and all methods,
    	// associate methods with receiver base type name where possible.
    	// Ignore methods that have an invalid receiver. They will be
    	// type-checked later, with regular functions.
    	if methods != nil {
    		check.methods = make(map[*TypeName][]*Func)
    		for i := range methods {
    			m := &methods[i]
    			// Determine the receiver base type and associate m with it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top