Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 363 for uris (0.1 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
         * <p>This calculation is only a heuristic based on our conventions.
         * In detail, the algo relies on the following assumptions: <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationServiceFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.net.URI;
    import java.util.List;
    
    @ServiceScope(Scope.Build.class)
    public interface SignatureVerificationServiceFactory {
        SignatureVerificationService create(BuildTreeDefinedKeys keyrings, List<URI> keyServers, boolean useKeyServers);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/EffectiveClassPath.java

            }
        }
    
        private static void addManifestClasspathFiles(File classpathFile, List<File> classpathFiles) {
            List<URI> classpathUris = ManifestUtil.parseManifestClasspath(classpathFile);
            for (URI classpathUri : classpathUris) {
                addClasspathFile(new File(classpathUri), classpathFiles);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/FileOperations.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.net.URI;
    import java.util.Map;
    
    @ServiceScope(Scope.Build.class)
    public interface FileOperations {
        File file(Object path);
    
        File file(Object path, PathValidation validation);
    
        URI uri(Object path);
    
        FileResolver getFileResolver();
    
        String relativePath(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

        }
    
        def "reports read of missing uri resource"() {
            given:
            def uuid = UUID.randomUUID()
            server.expectGetMissing("/myConfig-${uuid}.txt")
            server.start()
            buildFile << """
                text.text = resources.text.fromUri("${server.uri}/myConfig-${uuid}.txt")
    """
    
            expect:
            fails("text")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    #*      *##set ( $project.url = 'https://www.eclipse.org/sisu/' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

         */
        public String getDisplayUriForDir() {
            String uri = getDisplayUri();
            if (!uri.endsWith("/")) {
                uri += "/";
            }
            return uri;
        }
    
        public static class Snapshot {
            private final long modTime;
            private final HashCode hash;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            def original = urlConnection.getDefaultUseCaches()
            urlConnection.setDefaultUseCaches(false)
    
            try {
                URL[] urls = [new URL("jar:${jar.toURI().toURL()}!/")] as URL[]
                URLClassLoader ucl = new URLClassLoader(urls)
                if (ucl instanceof Closeable) {
                    loaders << ucl
                }
                Class.forName('org.gradle.MyClass', true, ucl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            if (StringUtil.isNotBlank(webConfigPager.name)) {
                cb.query().setName_Wildcard(wrapQuery(webConfigPager.name));
            }
            if (StringUtil.isNotBlank(webConfigPager.urls)) {
                cb.query().setUrls_Wildcard(wrapQuery(webConfigPager.urls));
            }
            if (StringUtil.isNotBlank(webConfigPager.description)) {
                if (webConfigPager.description.startsWith("*")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/IvyDuplicatePublicationTracker.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    
    @ServiceScope(Scope.Project.class)
    public class IvyDuplicatePublicationTracker {
        private final Project project;
        private final DuplicatePublicationTracker duplicatePublicationTracker;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top