Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for setRelease (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

                if (original.getLatest() == null) {
                    versioning.latest(recessive.getVersioning().getLatest());
                }
                if (original.getRelease() == null) {
                    versioning.release(recessive.getVersioning().getRelease());
                }
    
                Collection<String> versions =
                        new LinkedHashSet<>(recessive.getVersioning().getVersions());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmLanguageUtilities.java

            }
    
            return compileTasks.stream().map(provider -> {
                COMPILE compileTask = provider.get();
                if (compileTask.getOptions().getRelease().isPresent()) {
                    return compileTask.getOptions().getRelease().get();
                }
    
                List<String> compilerArgs = compileTask.getOptions().getCompilerArgs();
                int flagIndex = compilerArgs.indexOf("--release");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:47:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

                return []
            } else {
                return ["${project}:stripSymbols${buildType}"]
            }
        }
    
        String getDebug() {
            DEBUG
        }
    
        String getRelease() {
            RELEASE
        }
    
        String getDebugShared() {
            return "${DEBUG}Shared"
        }
    
        /**
         * Returns the tasks for the project with the given path.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/sync/runtime.go

    func runtime_SemacquireMutex(s *uint32, lifo bool, skipframes int)
    func runtime_SemacquireRWMutexR(s *uint32, lifo bool, skipframes int)
    func runtime_SemacquireRWMutex(s *uint32, lifo bool, skipframes int)
    
    // Semrelease atomically increments *s and notifies a waiting goroutine
    // if one is blocked in Semacquire.
    // It is intended as a simple wakeup primitive for use by the synchronization
    // library and should not be used directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

            if (profileXmlRepo.getSnapshots() != null) {
                repo.setSnapshots(convertRepositoryPolicy(profileXmlRepo.getSnapshots()));
            }
            if (profileXmlRepo.getReleases() != null) {
                repo.setReleases(convertRepositoryPolicy(profileXmlRepo.getReleases()));
            }
    
            return repo;
        }
    
        private static org.apache.maven.model.RepositoryPolicy convertRepositoryPolicy(RepositoryPolicy profileXmlRepo) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/sema_test.go

    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"fmt"
    	. "runtime"
    	"sync"
    	"sync/atomic"
    	"testing"
    )
    
    // TestSemaHandoff checks that when semrelease+handoff is
    // requested, the G that releases the semaphore yields its
    // P directly to the first waiter in line.
    // See issue 33747 for discussion.
    func TestSemaHandoff(t *testing.T) {
    	const iter = 10000
    	ok := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 21 19:37:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            Repository repository = new Repository();
            repository.setId(RepositorySystem.DEFAULT_REMOTE_REPO_ID);
            repository.setUrl("file://" + repoDir.toURI().getPath());
            repository.setReleases(policy);
            repository.setSnapshots(policy);
    
            return Arrays.asList(repositorySystem.buildArtifactRepository(repository));
        }
    
        protected ArtifactRepository getLocalRepository() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top