Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 353 for melhor (0.15 sec)

  1. src/go/types/issues_test.go

    	it.Complete()
    	// verify that after completing the interface, the embedded method remains unchanged
    	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)
    	obj, _, _ := LookupFieldOrMethod(et, false, nil, "Error")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

              def addTask(project) {
                project.tasks.create("hello").doLast { println "hello from method" }
              }
    
              apply from: "script.gradle"
            """
    
            file("script.gradle") << "addTask(project)"
    
            when:
            succeeds "hello"
    
            then:
            output.contains "hello from method"
        }
    
        def "methods defined in script plugin are not inherited by applied script plugin"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/net/http/request_test.go

    	_, err := NewRequest("bad method", "http://foo.com/", nil)
    	if err == nil {
    		t.Error("expected error from NewRequest with invalid method")
    	}
    	req, err := NewRequest("GET", "http://foo.example/", nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	req.Method = "bad method"
    	_, err = DefaultClient.Do(req)
    	if err == nil || !strings.Contains(err.Error(), "invalid method") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * despite the @IgnoreJRERequirement annotation there. My assumption is that, because javac
       * generates a synthetic method for the body of the lambda, the actual method calls that Animal
       * Sniffer is flagging don't appear inside toImmutableSortedMultiset but rather inside that
       * synthetic method. By moving those calls to a named method, we're able to apply
       * @IgnoreJRERequirement somewhere that it will help.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ** Properties with these types are configurable.
    ** `Property` extends the `Provider` interface.
    ** The method link:{javadocPath}/org/gradle/api/provider/Property.html#set-T-[Property.set(T)] specifies a value for the property, overwriting whatever value may have been present.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

        quantization_options = _QuantizationOptions()
    
      _populate_quantization_options_default_values(quantization_options)
    
      method: _QuantizationMethod = quantization_options.quantization_method
      if (
          method.preset_method == _PresetMethod.METHOD_STATIC_RANGE_INT8
          or method.preset_method == _PresetMethod.METHOD_NO_QUANTIZE
      ):
        return _static_range_quantize(
            saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * not in {@link #nextElements}, this method throws an {@link UnknownElementException}.
         *
         * <p>This method is used when testing iterators without a known ordering. We poll the target
         * iterator's next element and pass it to the reference iterator through this method so it can
         * return the same element. This enables the assertion to pass and the reference iterator to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * not in {@link #nextElements}, this method throws an {@link UnknownElementException}.
         *
         * <p>This method is used when testing iterators without a known ordering. We poll the target
         * iterator's next element and pass it to the reference iterator through this method so it can
         * return the same element. This enables the assertion to pass and the reference iterator to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/signature.go

    		}
    		sig.tparams = bindTParams(typeParams)
    	}
    	return sig
    }
    
    // Recv returns the receiver of signature s (if a method), or nil if a
    // function. It is ignored when comparing signatures for identity.
    //
    // For an abstract method, Recv returns the enclosing interface either
    // as a *Named or an *Interface. Due to embedding, an interface may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/go/types/call.go

    			// TODO(gri) The verification pass below is disabled for now because
    			//           method sets don't match method lookup in some cases.
    			//           For instance, if we made a copy above when creating a
    			//           custom method for a parameterized received type, the
    			//           method set method doesn't match (no copy there). There
    			///          may be other situations.
    			disabled := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top