Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,710 for locations (0.17 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

                // Verify that the base URL is secure now.
                if (baseHost != null && !GUtil.isSecureUrl(baseHost)) {
                    insecureBaseHost.run();
                }
    
                // Verify that any future redirect locations are secure.
                // Lambda will be called back on for every redirect in the chain.
                return redirectLocations ->
                    redirectLocations
                        .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/ImplementationDependencyRelocator.java

        }
    
        private final List<String> mustRelocateList = Arrays.asList(
            // In order to use a newer version of jna the resources must not be available in the old location
            "com/sun/jna",
            "org/apache/groovy",
            // JGit properties work from their relocated locations and conflict if they are left in place.
            "org/eclipse/jgit");
    
        private final boolean mustBeRelocated(String resource) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

            }
        }
    
        private static List<InternalLocation> toInternalLocations(List<ProblemLocation> locations) {
            return locations.stream().map(location -> {
                if (location instanceof LineInFileLocation) {
                    LineInFileLocation fileLocation = (LineInFileLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. hack/lib/util.sh

        locations+=(
          "${KUBE_ROOT}/_output/local/go/bin/${lookfor}"
          "${KUBE_ROOT}/_output/dockerized/go/bin/${lookfor}"
        );
      fi
    
      # looks for $1 in the $PATH
      if which "${lookfor}" >/dev/null; then
        local -r local_bin="$(which "${lookfor}")"
        locations+=( "${local_bin}"  );
      fi
    
      # List most recently-updated location.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // location ids.
    func (p *Profile) remapLocationIDs() {
    	seen := make(map[*Location]bool, len(p.Location))
    	var locs []*Location
    
    	for _, s := range p.Sample {
    		for _, l := range s.Location {
    			if seen[l] {
    				continue
    			}
    			l.ID = uint64(len(locs) + 1)
    			locs = append(locs, l)
    			seen[l] = true
    		}
    	}
    	p.Location = locs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/testing/base/plugins/TestingBasePlugin.java

    import org.gradle.api.provider.Provider;
    import org.gradle.api.reporting.ReportingExtension;
    import org.gradle.api.tasks.testing.AbstractTestTask;
    
    /**
     * Base plugin for testing.
     *
     * - Adds default locations for test reporting
     *
     * @since 4.4
     */
    public abstract class TestingBasePlugin implements Plugin<Project> {
        public static final String TEST_RESULTS_DIR_NAME = "test-results";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

        }
    
        @Override
        public void resolveDependencies(TaskDependencyResolver dependencyResolver) {
        }
    
        @Override
        public String toString() {
            return type.name().toLowerCase() + " locations for " + getGroup();
        }
    
        @Override
        public void execute(NodeExecutionContext context) {
        }
    
        public Type getType() {
            return type;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencyVisitor.java

        /**
         * The dependency points to an external module.
         * The component identifier is guaranteed to be a {@link org.gradle.api.artifacts.component.ModuleComponentIdentifier}.
         * The source and javadoc locations maybe be empty, but never null.
         */
        void visitModuleDependency(ResolvedArtifactResult artifact, Set<ResolvedArtifactResult> sources, Set<ResolvedArtifactResult> javaDoc, boolean testDependency, boolean asJavaModule);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

        }
    
        def "can use file() method to resolve locations created relative to the project dir and build dir"() {
            buildFile << """
                def location = $expression
                println "location: " + file(location)
    """
    
            when:
            run()
    
            then:
            outputContains("location: " + testDirectory.file(resolvesTo))
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. src/internal/profile/encode.go

    		x := new(Mapping)
    		pp := m.(*Profile)
    		pp.Mapping = append(pp.Mapping, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Location location = 4
    	func(b *buffer, m message) error {
    		x := new(Location)
    		pp := m.(*Profile)
    		pp.Location = append(pp.Location, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Function function = 5
    	func(b *buffer, m message) error {
    		x := new(Function)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top