Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 688 for checkDep (0.1 sec)

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

         */
    
        @Override
        @ParametricNullness
        K checkKey(@ParametricNullness K key) {
          return inverse.checkValue(key);
        }
    
        @Override
        @ParametricNullness
        V checkValue(@ParametricNullness V value) {
          return inverse.checkKey(value);
        }
    
        /**
         * @serialData the forward bimap
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Closer.java

       * IOException}, {@code RuntimeException}, {@code Error} or a checked exception of the given type.
       * Otherwise, it will be rethrown wrapped in a {@code RuntimeException}. <b>Note:</b> Be sure to
       * declare all of the checked exception types your try block can throw when calling an overload of
       * this method so as to avoid losing the original exception type.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Closer.java

       * IOException}, {@code RuntimeException}, {@code Error} or a checked exception of the given type.
       * Otherwise, it will be rethrown wrapped in a {@code RuntimeException}. <b>Note:</b> Be sure to
       * declare all of the checked exception types your try block can throw when calling an overload of
       * this method so as to avoid losing the original exception type.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    // x is of interface type V).
    func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
    	return (*Checker)(nil).missingMethod(V, T, static, Identical, nil)
    }
    
    // missingMethod is like MissingMethod but accepts a *Checker as receiver,
    // a comparator equivalent for type comparison, and a *string for error causes.
    // The receiver may be nil if missingMethod is invoked through an exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/go/types/lookup.go

    // x is of interface type V).
    func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
    	return (*Checker)(nil).missingMethod(V, T, static, Identical, nil)
    }
    
    // missingMethod is like MissingMethod but accepts a *Checker as receiver,
    // a comparator equivalent for type comparison, and a *string for error causes.
    // The receiver may be nil if missingMethod is invoked through an exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

    import java.util.concurrent.Executor;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Implementations of {@code Futures.transform*}. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |.
    abstract class AbstractTransformFuture<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            repositoryInteractions {
                'org.utils:api:1.2' {
                    allowAll()
                }
            }
    
            then:
            fails ':checkDeps'
            GradleContextualExecuter.configCache || failure.assertHasDescription("Execution failed for task ':checkDeps'.")
            failure.assertHasFileName("Build file '$buildFile.path'")
            failure.assertHasLineNumber(lines + 10)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    			// Blank identifiers don't get declared, so naive type-checking of the
    			// receiver type expression would fail in Checker.collectParams below,
    			// when Checker.ident cannot resolve the _ to a type.
    			//
    			// Checker.recvTParamMap maps these blank identifiers to their type parameter
    			// types, so that they may be resolved in Checker.ident when they fail
    			// lookup in the scope.
    			for i, p := range rparams {
    				if p.Value == "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

                'org:test:1.0'()
            }
    
            when:
            repositoryInteractions {
                'org:test:1.0' {
                    expectResolve()
                }
            }
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    project(":other", "test:other:unspecified") {
                        configuration('default')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                'org:moduleA:1.0' {
                    expectGetMetadata()
                }
                'org:external:1.0' {
                    expectResolve()
                }
            }
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:moduleA:1.0") {
                        noArtifacts()
                        module("org:external:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top