Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for METHOD (0.12 sec)

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

    	}
    
    	// V0 has method m with correct signature. Should not report wrongType.
    	method, wrongType := lookup("V0")
    	if method != nil || wrongType {
    		t.Fatalf("V0: got method = %v, wrongType = %v", method, wrongType)
    	}
    
    	checkMissingMethod := func(tname string, reportWrongType bool) {
    		method, wrongType := lookup(tname)
    		if method == nil || method.Name() != "m" || wrongType != reportWrongType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

          for (Method method : RawTypeConsistencyTester.class.getDeclaredMethods()) {
            assertEquals(
                method.getReturnType(), TypeToken.of(method.getGenericReturnType()).getRawType());
            for (int i = 0; i < method.getParameterTypes().length; i++) {
              assertEquals(
                  method.getParameterTypes()[i],
                  TypeToken.of(method.getGenericParameterTypes()[i]).getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== ExternalDependency API Cleanup
    
    The deprecated `setForce(boolean)` method of the `ExternalDependency` interface has been removed.
    Use the `version(Action)` method to configure strict versions instead.
    
    ==== Build-scan method removed from Kotlin DSL
    
    The deprecated `build-scan` plugin application method has been removed from the Kotlin DSL.
    Use the `gradle-enterprise` method instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    	}
    
    	// V0 has method m with correct signature. Should not report wrongType.
    	method, wrongType := lookup("V0")
    	if method != nil || wrongType {
    		t.Fatalf("V0: got method = %v, wrongType = %v", method, wrongType)
    	}
    
    	checkMissingMethod := func(tname string, reportWrongType bool) {
    		method, wrongType := lookup(tname)
    		if method == nil || method.Name() != "m" || wrongType != reportWrongType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
       * <p>Each method invocation on the set returned by this method results in exactly one method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.message == "Cannot create service of type String using method DefaultServiceRegistryTest\$StringProvider.createString() as required service of type Runnable for parameter #1 is not available."
    
            when:
            registry.get(Number)
    
            then:
            e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	return signature, nil
    }
    
    // Returns new HTTP request object.
    func newTestStreamingRequest(method, urlStr string, dataLength, chunkSize int64, body io.ReadSeeker) (*http.Request, error) {
    	if method == "" {
    		method = http.MethodPost
    	}
    
    	req, err := http.NewRequest(method, urlStr, nil)
    	if err != nil {
    		return nil, err
    	}
    
    	if body == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    // Close method deletes a device information set and frees all associated memory.
    func (deviceInfoSet DevInfo) Close() error {
    	return SetupDiDestroyDeviceInfoList(deviceInfoSet)
    }
    
    //sys	SetupDiBuildDriverInfoList(deviceInfoSet DevInfo, deviceInfoData *DevInfoData, driverType SPDIT) (err error) = setupapi.SetupDiBuildDriverInfoList
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
        return rValue;
      }
    
      /**
       * Subclasses can override this method to implement interruption of the future's computation. The
       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, checking
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
        return rValue;
      }
    
      /**
       * Subclasses can override this method to implement interruption of the future's computation. The
       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, consulting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top