Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 363 for uris (0.05 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        }
    
        def "requires use of configuration flag if Java plugin isn't applied"() {
            given:
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:top:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

         * crawler may only retrieve Sitemaps that were modified since a certain
         * date. This incremental Sitemap fetching mechanism allows for the rapid
         * discovery of new URLs on very large sites.
         */
        private String lastmod;
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc()
         */
        @Override
        public String getLoc() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

                        println project(':bar').configurations.bar.files
                    }
                }
    
                project(':bar') {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
                    }
    
                    configurations {
                        bar
                    }
    
                    dependencies {
                        bar "test:test-jar:1.0"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

            }
            getUri().toString()
        }
    
        URI getUri() {
            assert server.started
            if (sslConnector) {
                return URI.create("https://localhost:${sslConnector.localPort}")
            } else if (useHostnameForUrl) {
                // If used in a code-path that interacts with the HttpClientHelper, this will fail validation.
                return URI.create("http://localhost:${connector.localPort}")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebConfigCA.java

        }
    
        public void setUrls_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setUrls_Terms("urls", opLambda, null);
        }
    
        public void setUrls_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsWebConfigCA> aggsLambda) {
            setUrls_Terms("urls", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 149K bytes
    - Viewed (0)
  6. pkg/wasm/convert_test.go

    				extensionConfigMap["no-remote-load"],
    			},
    			wantErr: false,
    		},
    		{
    			name: "no uri",
    			input: []*core.TypedExtensionConfig{
    				extensionConfigMap["no-http-uri"],
    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["no-http-uri"],
    			},
    			wantErr: true,
    		},
    		{
    			name: "secret",
    			input: []*core.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SftpResource.groovy

        }
    
        String getName() {
            return file.name
        }
    
        String getPathOnServer() {
            return "/${RelativePathUtil.relativePath(server.baseDir, file)}"
        }
    
        URI getUri() {
            return new URI("${server.uri}${pathOnServer}")
        }
    
        void expectLstat() {
            server.expectLstat(pathOnServer)
        }
    
        void expectLstatMissing() {
            server.expectLstatMissing(pathOnServer)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("*").URLs("*").RuleOrDie(),
    			},
    		},
    		{
    			// a role which provides just enough power to determine if the server is
    			// ready and discover API versions for negotiation
    			ObjectMeta: metav1.ObjectMeta{Name: "system:discovery"},
    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("get").URLs(
    					"/livez", "/readyz", "/healthz",
    					"/version", "/version/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingStrictModeIntegrationTest.groovy

            buildFile << """
    dependencyLocking {
        lockAllConfigurations()
        lockMode = LockMode.${lockMode()}
    }
    
    repositories {
        maven {
            name 'repo'
            url '${mavenRepo.uri}'
        }
    }
    configurations {
        lockedConf
    }
    
    dependencies {
        lockedConf 'org:foo:1.+'
    }
    """
    
            when:
            fails 'dependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top