Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,710 for locations (0.33 sec)

  1. maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithLocationMatcher.java

                super.describeMismatch(o, description);
            } else {
                final ProjectBuildingResult r = (ProjectBuildingResult) o;
                description.appendText("was a ProjectBuildingResult with locations ");
                String messages = r.getProblems().stream()
                        .map(p -> formatLocation(p.getColumnNumber(), p.getLineNumber()))
                        .collect(joining(", "));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AggregatingFilerTest.groovy

            StandardLocation.SOURCE_OUTPUT        | GeneratedResource.Location.SOURCE_OUTPUT
            StandardLocation.CLASS_OUTPUT         | GeneratedResource.Location.CLASS_OUTPUT
            StandardLocation.NATIVE_HEADER_OUTPUT | GeneratedResource.Location.NATIVE_HEADER_OUTPUT
        }
    
        def "resources with same path but different location are distinct"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCacheLocations.java

    public interface GlobalCacheLocations {
    
        /**
         * Checks if a given path is inside one of Gradle's global caches.
         */
        boolean isInsideGlobalCache(String path);
    
        /**
         * Returns the cache locations.
         */
        FileHierarchySet getCacheRoots();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/profile/graph.go

    	}
    }
    
    // CreateNodes creates graph nodes for all locations in a profile. It
    // returns set of all nodes, plus a mapping of each location to the
    // set of corresponding nodes (one per location.Line).
    func CreateNodes(prof *Profile, o *Options) (Nodes, locationMap) {
    	locations := locationMap{make([]Nodes, len(prof.Location)+1), make(map[uint64]Nodes)}
    	nm := make(NodeMap, len(prof.Location))
    	for _, l := range prof.Location {
    		lines := l.Line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

         * That means that we would not invalidate the right locations in the virtual file system on macOS.
         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
         * Note that the project directory is canonicalized by Gradle, so the project directory can always be watched.
         */
        private static void validateLocationToWatch(File location) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ResolveTaskMutationsBuildOperationType.java

     * <p>
     * Before task execution ({@link org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationType}),
     * the mutations of the task need to be resolved. The mutations of a task are the locations it may modify,
     * e.g. its outputs, destroyables and local state. In order to resolve the mutations, the task input and output
     * properties are detected as well. Since Gradle 7.5, resolving of the mutations happens in a separate node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/resources/src/integTest/groovy/org/gradle/internal/resource/ExternalResourceNameIntegrationTest.groovy

                doLast { conf.files.each {} }
            }
            """
    
            when:
            fails 'resolve'
    
            then:
            failure.assertHasCause """Could not find org:name:1.0.
    Searched in the following locations:
      - file:////MISSING/folder/ivy/org/name/1.0/ivy-1.0.xml
    """
            where:
            // '//' - Normal UNC path for use with `new File(String)`
            // 'file:////' - UNC path encoded as a URI, for use with `new File(URI)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 08:36:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            installRelease.runScriptFile.get().getAsFile().name == OperatingSystem.current().getScriptName("testApp")
        }
    
        def "output locations are calculated using base name defined on extension"() {
            when:
            project.pluginManager.apply(CppApplicationPlugin)
            project.evaluate()
            project.application.baseName = "test_app"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/util/cmdutil.go

    }
    
    // GetKubeConfigPath can be used to search for a kubeconfig in standard locations
    // if and empty string is passed to the function. If a non-empty string is passed
    // the function returns the same string.
    func GetKubeConfigPath(file string) string {
    	// If a value is provided respect that.
    	if file != "" {
    		return file
    	}
    	// Find a config in the standard locations using DefaultClientConfigLoadingRules,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/ByteInputTest.groovy

            file = new RandomAccessFile(tmpDir.file("test.bin"), "rw")
            input = new ByteInput(file)
        }
    
        def cleanup() {
            file.close()
        }
    
        def "can reuse to read from multiple locations in file"() {
            given:
            file.seek(0)
            file.writeInt(123)
            file.writeInt(321)
            file.writeInt(456)
    
            expect:
            def stream = input.start(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top