Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 356 for melhor (0.21 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       * containing one element (the given set itself).
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on elements that are not mutually
       * comparable.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            return isAnnotatedWithIncubating(clazz)
        }
    
        private boolean isIncubatingOrOverrideMethod(JApiMethod method) {
            return isAnnotatedWithIncubating(method) || isAnnotatedWithIncubating(method.jApiClass) || isOverride(method)
        }
    
        private static boolean isIncubatingField(JApiField field) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/issues_test.go

    	// (interfaces are "completed" lazily now, so the completion happens implicitly when
    	// accessing Method(0))
    	want := et.Underlying().(*Interface).Method(0)
    	got := it.Method(0)
    	if got != want {
    		t.Fatalf("%s.Method(0): got %q (%p); want %q (%p)", it, got, got, want, want)
    	}
    	// verify that lookup finds the same method in both interfaces (redundant check)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top