Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,710 for locations (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(ExternalResourceName location);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

                            matcher.appendTail(resolvedValue);
                            locations.add(resolvedValue.toString());
                        }
                    }
                    return locations.stream()
                        .map(jdkHome -> InstallationLocation.autoDetected(new File(jdkHome), getSourceName()))
                        .collect(Collectors.toSet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            // Keep only snapshots we can trust
            return retainOnlyMatchingSnapshots(newRoot, invalidator, snapshot -> {
                // Keep everything in immutable locations, because Gradle makes sure
                // to update the VFS when it updates those locations
                if (immutableLocationsFilter.test(snapshot.getAbsolutePath())) {
                    return true;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/self_test.go

    	"path/filepath"
    	"runtime"
    	"testing"
    	"time"
    
    	. "cmd/compile/internal/types2"
    )
    
    func TestSelf(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // The Go command is needed for the importer to determine the locations of stdlib .a files.
    
    	files, err := pkgFiles(".")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	conf := Config{Importer: defaultImporter()}
    	_, err = conf.Check("cmd/compile/internal/types2", files, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

            then:
            failure.assertHasCause("Could not resolve all dependencies for configuration ':compile'.")
            failure.assertHasCause("""Could not find any version that matches test:test:2.0.
    Searched in the following locations:
      - Git repository at ${repo.url}
    Required by:
        project :""")
    
            when:
            repoSettingsFile.replace("version = '1.1'", "version = '2.0'")
            repo.commit("v2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "processors can generate identical resources in different locations"() {
            given:
            def locations = [StandardLocation.SOURCE_OUTPUT.toString(), StandardLocation.NATIVE_HEADER_OUTPUT.toString(), StandardLocation.CLASS_OUTPUT.toString()]
            withProcessor(new ResourceGeneratingProcessorFixture().withOutputLocations(locations).withDeclaredType(IncrementalAnnotationProcessorType.AGGREGATING))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/AbstractNativeComponentPluginTest.groovy

        abstract Class<? extends LanguageSourceSet> getSourceSetClass()
    
        abstract Class<? extends Task> getCompileTaskClass()
    
        abstract String getPluginName()
    
        def "creates source set with conventional locations for components"() {
            when:
            dsl {
                pluginManager.apply pluginClass
    
                model {
                    components {
                        exe(NativeExecutableSpec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            /**
             * Resolves location of the outputs of this result for a given input artifact.
             *
             * Produced outputs don't need to be resolved to locations, since they are already resolved to absolute paths in the workspace.
             * The relative paths of selected parts of the input artifact need to resolved based on the provided input artifact location.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/ClassPath.java

        ImmutableSet<LocationInfo> locations = locationsFrom(classloader);
    
        // Add all locations to the scanned set so that in a classpath [jar1, jar2], where jar1 has a
        // manifest with Class-Path pointing to jar2, we won't scan jar2 twice.
        Set<File> scanned = new HashSet<>();
        for (LocationInfo location : locations) {
          scanned.add(location.file());
        }
    
        // Scan all locations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/starttime.go

    // It can be used to consistently use the same start time instead of calling time.Now()
    // in multiple locations and ending up with minor time deviations.
    var startTime time.Time
    
    func init() {
    	startTime = time.Now()
    }
    
    // StartTimeUTC returns startTime with its location set to UTC.
    func StartTimeUTC() time.Time {
    	return startTime.UTC()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top