Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for uris (0.04 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		name           string
    		urls           []string
    		requireHTTPS   bool
    		expectedErrors bool
    	}{
    		{
    			name:           "valid urls (https not required)",
    			urls:           []string{"http://example.com", "https://example.org"},
    			requireHTTPS:   false,
    			expectedErrors: false,
    		},
    		{
    			name:           "valid urls (https required)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

        private final ListMultimap<SftpHost, LockableSftpClient> idleClients = ArrayListMultimap.create();
    
        public LockableSftpClient createSftpClient(URI uri, PasswordCredentials credentials) {
            synchronized (lock) {
                SftpHost sftpHost = new SftpHost(uri, credentials);
                return acquireClient(sftpHost);
            }
        }
    
        private LockableSftpClient acquireClient(SftpHost sftpHost) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        private static void validateMetadataMatchesSpec(JavaToolchainSpec spec, URI uri, JvmInstallationMetadata metadata) {
            if (!new JvmInstallationMetadataMatcher(spec).test(metadata)) {
                throw new GradleException("Toolchain provisioned from '" + uri + "' doesn't satisfy the specification: " + spec.getDisplayName() + ".");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        assertNotNull(FinalizableReferenceQueue.getStartFinalizer(finalizerCopy));
      }
    
      static class DecoupledClassLoader extends URLClassLoader {
    
        public DecoupledClassLoader(URL[] urls) {
          super(urls);
        }
    
        @Override
        protected synchronized Class<?> loadClass(String name, boolean resolve)
            throws ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/matcher/template.go

    // PatherTemplateMatcher creates a URI template matcher for path.
    func PathTemplateMatcher(path string) *uri_template.UriTemplateMatchConfig {
    	return &uri_template.UriTemplateMatchConfig{
    		PathTemplate: sanitizePathTemplate(path),
    	}
    }
    
    // sanitizePathTemplate converts the path template into a valid envoy uri template.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top