Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,008 for locations (0.21 sec)

  1. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

        ) {
            return new DefaultFileSystemAccess(
                fileHasher,
                stringInterner,
                stat,
                virtualFileSystem,
                locations -> locations.forEach(System.out::println),
                statisticsCollector
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            failure.assertHasCause("""Could not find any matches for group:projectA:1.+ as no versions of group:projectA are available.
    Searched in the following locations:
      - ${repo.getModuleMetaData("group", "projectA").uri}
      - ${projectA.pom.uri}
    Required by:
    """)
    
            when:
            server.resetExpectations()
            projectA.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    The following is a list of common package managers, tools, and locations that are supported by the JVM auto-detection.
    
    JVM auto-detection knows how to work with:
    
    * Operation-system specific locations: Linux, macOS, Windows
    * Package Managers: https://asdf-vm.com/#/[Asdf-vm], https://github.com/shyiko/jabba[Jabba], https://sdkman.io/[SDKMAN!]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            when:
            result.explain(visitor)
    
            then:
            visitor.toString() == TextUtil.toPlatformLineSeparators("""Could not locate a Windows SDK installation. None of the following locations contain a valid installation:
      - ${dir1}""")
        }
    
        def "SDK not available when registry dir does not contain any versions that look like an SDK"() {
            def visitor = new TreeFormatter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

    Searched in the following locations:
        ${projectA.artifact.uri}""")
    
            when:
            server.resetExpectations()
    
            then:
            fails 'retrieve'
    
            and:
            failure.assertHasCause("""Could not find projectA-1.0-SNAPSHOT.jar (group:projectA:1.0-SNAPSHOT:${projectA.uniqueSnapshotVersion}).
    Searched in the following locations:
        ${projectA.artifact.uri}""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                            if (vfsLogging == VfsLogging.VERBOSE) {
                                LOGGER.warn("Received {} file system events since last build while watching {} locations",
                                    statisticsSinceLastBuild.getNumberOfReceivedEvents(),
                                    statisticsSinceLastBuild.getNumberOfWatchedHierarchies());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    @Override
                    public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                        contents.forEach(location -> taskInputs.add(location.getAbsolutePath()));
                    }
    
                    @Override
                    public void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    Just like the Java plugin, the Scala plugin allows you to configure custom locations for Scala production and test source files.
    
    .Custom Scala source layout
    ====
    include::sample[dir="snippets/scala/customizedLayout/kotlin",files="build.gradle.kts[tags=custom-source-locations]"]
    include::sample[dir="snippets/scala/customizedLayout/groovy",files="build.gradle[tags=custom-source-locations]"]
    ====
    
    [[sec:scala_dependency_management]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Bisect finds changes responsible for causing a failure.
    // A typical use is to identify the source locations in a program
    // that are miscompiled by a given compiler optimization.
    //
    // Usage:
    //
    //	bisect [flags] [var=value...] command [arguments...]
    //
    // Bisect operates on a target command line – the target – that can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/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.Profile, o *Options) (Nodes, map[uint64]Nodes) {
    	locations := make(map[uint64]Nodes, len(prof.Location))
    	nm := make(NodeMap, len(prof.Location))
    	for _, l := range prof.Location {
    		lines := l.Line
    		if len(lines) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top