Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for METHOD (0.12 sec)

  1. src/cmd/compile/internal/types2/named.go

    }
    
    // expandMethod substitutes type arguments in the i'th method for an
    // instantiated receiver.
    func (t *Named) expandMethod(i int) *Func {
    	// t.orig.methods is not lazy. origm is the method instantiated with its
    	// receiver type parameters (the "origin" method).
    	origm := t.inst.orig.Method(i)
    	assert(origm != nil)
    
    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failureDescriptionContains(missingValueMessage { property('input') })
    
            where:
            method << ["file", "files", "dir"]
        }
    
        def "optional null input files registered via TaskInputs.#method are allowed"() {
            buildFile << """
                task test {
                    inputs.${method}({ null }) withPropertyName "input" optional(true)
                    doLast {}
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                        name: :method
                        stringMatch:
                          exact: method
                    - header:
                        name: :method
                        stringMatch:
                          prefix: method-prefix-
                    - header:
                        name: :method
                        stringMatch:
                          suffix: -suffix-method
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

        op->emitError(absl::StrCat("Failed to get quantization method: ",
                                   method.status().ToString()));
      }
      return method.ok() ? *method : Method::default_instance();
    }
    
    bool HasWeightOnlyPtqMethod(TF::XlaCallModuleOp xla_call_module_op) {
      Method method = GetQuantizationMethodOrDefault(xla_call_module_op);
      return method.has_weight_only_ptq();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

    using ::stablehlo::quantization::Method;
    
    constexpr StringRef kQuantTraitAttrName = "_tfl_quant_trait";
    
    // Whether the op is a call op to lifted composite function.
    bool IsCallToQuantizableLiftedFunction(Operation *op) {
      if (!op) return false;
      if (auto xla_call_module_op = dyn_cast_or_null<TF::XlaCallModuleOp>(op);
          xla_call_module_op != nullptr) {
        absl::StatusOr<Method> method = GetQuantizationMethod(xla_call_module_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Closer.java

       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
       * to ensure the compiler knows that it will throw.
       *
       * @return this method does not return; it always throws
       * @throws IOException when the given throwable is an IOException
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      ASSERT_FALSE(xla_call_module_ops.empty());
    
      // Test that `GetQuantizationMethod` returns a valid `Method` corresponding to
      // `"no_quantization {}"`.
      const absl::StatusOr<Method> method =
          GetQuantizationMethod(*xla_call_module_ops.begin());
      ASSERT_THAT(method, IsOk());
      EXPECT_TRUE(method->has_no_quantization());
    }
    
    TEST_F(LiftAsFunctionCallTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

                    new StackTraceElement("org.ClassName2", "methodName2", "FileName2.java", 22),
                    // class and method name match SimpleTestDescriptor
                    new StackTraceElement("ClassName", "testName", "MyTest.java", 22),
                    new StackTraceElement("java.lang.reflect.Method", "invoke", "Method.java", 597),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/go/types/named.go

    }
    
    // expandMethod substitutes type arguments in the i'th method for an
    // instantiated receiver.
    func (t *Named) expandMethod(i int) *Func {
    	// t.orig.methods is not lazy. origm is the method instantiated with its
    	// receiver type parameters (the "origin" method).
    	origm := t.inst.orig.Method(i)
    	assert(origm != nil)
    
    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/Closer.java

       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
       * to ensure the compiler knows that it will throw.
       *
       * @return this method does not return; it always throws
       * @throws IOException when the given throwable is an IOException
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top