Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,785 for checkDep (0.22 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

            repo.expectCloneSomething()
            run('checkDeps')
    
            then:
            fixture.expectGraph {
                root(":", "test:consumer:1.2") {
                    edge("test:test:latest.integration", ":dep", "test:test:2.0") {
                    }
                }
            }
            result.assertTasksExecuted(":dep:jar_2.0", ":checkDeps")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    dependencies {
                        constraints {
                            conf('org:foo:1.0')
                        }
                    }
                }
            }
    
            when:
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {}
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.1' {
                    expectResolve()
                }
            }
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    edge('org:foo:1.0', 'org:foo:1.1') {
                        byConsistentResolution('other')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/go/types/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.Name == "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Suppliers.java

        public T get() {
          // A 2-field variant of Double Checked Locking.
          if (!initialized) {
            synchronized (this) {
              if (!initialized) {
                T t = delegate.get();
                value = t;
                initialized = true;
                return t;
              }
            }
          }
          // This is safe because we checked `initialized`.
          return uncheckedCastNullableTToT(value);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCommandLineArgsIntegrationTest.groovy

            execute(buildA, ":checkDeps", ["--settings-file", "settings-copy.gradle"])
    
            then:
            assertTaskExecuted(":buildB", ":jar")
        }
    
        def "does not exclude tasks when building artifact for included build"() {
            given:
            dependency 'org.test:buildB:1.0'
    
            when:
            execute(buildA, ":checkDeps", ["--exclude-task", "jar"])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 12:02:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/EnumHashBiMap.java

        this.keyTypeOrObjectUnderJ2cl = keyType;
      }
    
      // Overriding these 3 methods to show that values may be null (but not keys)
    
      @Override
      K checkKey(K key) {
        return checkNotNull(key);
      }
    
      @CanIgnoreReturnValue
      @Override
      @SuppressWarnings("RedundantOverride") // b/192446478: RedundantOverride ignores some annotations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
         * @throws Exception if the precondition cannot be checked
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

            prepareResolve('compileClasspath', 'jre')
    
            when:
            run ':checkDeps'
    
            then:
            expectStandardJVM()
        }
    
        def "Prefers Android variant in Android projects"() {
            given:
            prepareResolve('releaseCompileClasspath', 'android')
    
            when:
            run ':checkDeps'
    
            then:
            expectAndroid()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    	"k8s.io/klog/v2"
    )
    
    // HealthChecker is a named healthz checker.
    type HealthChecker interface {
    	Name() string
    	Check(req *http.Request) error
    }
    
    // PingHealthz returns true automatically when checked
    var PingHealthz HealthChecker = ping{}
    
    // ping implements the simplest possible healthz checker.
    type ping struct{}
    
    func (ping) Name() string {
    	return "ping"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top