Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isRelease (0.19 sec)

  1. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

            buildType(StartReleaseCycle)
            buildType(StartReleaseCycleTest)
        } else {
            buildType(PublishReleaseCandidate(branch))
            buildType(PublishFinalRelease(branch))
        }
    
        if (branch.isRelease || branch.isExperimental) {
            buildType(PublishNightlyDocumentation(branch))
        }
    
        params {
            password("env.ORG_GRADLE_PROJECT_gradleS3AccessKey", "%gradleS3AccessKey%")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 04:36:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

            this.artifactHandler = artifactHandler;
        }
    
        @Override
        public void setRelease(boolean release) {
            this.release = release;
        }
    
        @Override
        public boolean isRelease() {
            return release;
        }
    
        @Override
        public List<ArtifactVersion> getAvailableVersions() {
            return availableVersions;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 19:20:54 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	oldgocache       string
    	exe              string
    	defaultcc        map[string]string
    	defaultcxx       map[string]string
    	defaultpkgconfig string
    	defaultldso      string
    
    	rebuildall bool
    	noOpt      bool
    	isRelease  bool
    
    	vflag int // verbosity
    )
    
    // The known architectures.
    var okgoarch = []string{
    	"386",
    	"amd64",
    	"arm",
    	"arm64",
    	"loong64",
    	"mips",
    	"mipsle",
    	"mips64",
    	"mips64le",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandlerWrapper.java

            }
        }
    
        void released() {
            lock.lock();
            try {
                started = true;
            } finally {
                lock.unlock();
            }
        }
    
        public boolean isReleased() {
            lock.lock();
            try {
                return started;
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public String getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller_test.go

    	rsAdopt.OwnerReferences = nil
    	// RS with matching ControllerRef, but wrong labels. Should be released.
    	rsRelease := newReplicaSet(d, "rsRelease", 1)
    	rsRelease.Labels = map[string]string{"foo": "notbar"}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rsAdopt, rsRelease)
    	f.objects = append(f.objects, d, rsAdopt, rsRelease)
    
    	// Start the fixture.
    	c, informers, err := f.newController(ctx)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                    System.out.println(String.format("[%d] signalling all requests ready", id));
                    onExpectedRequestsReceived(this, notReceived.size());
                }
    
                while (!handler.isReleased() && !state.isFailed() && !cancelled) {
                    long waitMs = mostRecentEvent + timeoutMs - clock.getCurrentTime();
                    if (waitMs < 0) {
                        ResponseProducer failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top