Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 275 for uris (0.2 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                if (StringUtil.isNotBlank(getIncludedDocUrls())) {
                    final List<Pattern> urlPatterList = new ArrayList<>();
                    final String[] urls = getIncludedDocUrls().split("[\r\n]");
                    for (final String u : urls) {
                        final String v = systemHelper.normalizeConfigPath(u);
                        if (StringUtil.isNotBlank(v)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${moduleA.ivy.uri}
    Required by:
        project :""")
                .assertHasCause("""Could not find group:projectB:1.0-milestone-9.
    Searched in the following locations:
      - ${moduleB.ivy.uri}
    Required by:
        project :""")
            failure.assertHasResolutions(REPOSITORY_HINT,
                STACKTRACE_MESSAGE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    		server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			// Check request headers.
    			if got, want := r.Header.Get("X-Forwarded-Uri"), item.forwardedURI; got != want {
    				t.Errorf("%v: X-Forwarded-Uri = %q, want %q", name, got, want)
    			}
    			if len(item.transport.Host) == 0 {
    				_, present := r.Header["X-Forwarded-Host"]
    				if present {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    
            when:
            module.pom.expectGetMissing()
    
            then:
            fails("showMissing")
            failure.assertResolutionFailure(':missing')
                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            def downloadBMetadata = events.operation("Download ${server.uri}${projectB.pomPath}")
            def downloadBArtifact = events.operation("Download ${server.uri}${projectB.artifactPath}")
            def downloadCRootMetadata = events.operation("Download ${server.uri}/repo/group/projectC/maven-metadata.xml")
            def downloadCPom = events.operation("Download ${server.uri}${projectC.pomPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                @Override
                public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) {
                    URI uri = URI.create("http://exoticJavaToolchain.com/java-" + request.getJavaToolchainSpec().getLanguageVersion().get());
                    return Optional.of(JavaToolchainDownload.fromUri(uri));
                }
            """
        }
    
        private static String customToolchainResolverCode() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

                group = 'org.gradle.test'
                version = '1.0'
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                        ivy { url "${ivyRepo2.uri}" }
                    }
                    publications {
                        ivy(IvyPublication)
                    }
                }
            """
            when:
            succeeds 'publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

    }
    """
    
            when:
            redirectServer.authenticationScheme = HEADER
    
            and:
            redirectServer.expectGetRedirected(moduleA.pom.uri.path, moduleA.pom.uri.toString())
            redirectServer.expectGetRedirected(moduleA.artifact.uri.path, moduleA.artifact.uri.toString())
            moduleA.pom.expectGet()
            moduleA.artifact.expectGet()
    
            then:
            succeeds('listJars')
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            mavenRepo.module("foo", "baz", "1.0").dependsOnModules("bar").publish()
    
            file("build.gradle") << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                configurations { foo }
                dependencies {
                  foo 'i:dont:exist'
                  foo 'foo:baz:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

         *
         * @see org.codelibs.robot.client.S2RobotClient#doGet(java.lang.String)
         */
        @Override
        public ResponseData doGet(final String uri) {
            return processRequest(uri, true);
        }
    
        protected ResponseData processRequest(final String uri, final boolean includeContent) {
            if (ftpAuthenticationHolder == null) {
                init();
            }
    
            // start
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top