Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for server_uri (0.24 sec)

  1. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

                .assertHasCause('Could not resolve org.group.name:projectA:1.2')
                .assertHasCause("Could not connect to SFTP server at ${ivySftpRepo.serverUri}")
                .assertHasCause("Auth fail for methods 'password,keyboard-interactive,publickey'")
        }
    
        void "resolve dependencies from a SFTP Ivy repository with unsupported password authentication"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    		{"test2", configClient{clusterName: "kubernetes", userName: "user2", serverURL: "localhost:8080"}, configClientWithToken{token: "cba"}, nil, []byte(configOut2)},
    	}
    	for _, rt := range writeConfig {
    		t.Run(rt.name, func(t *testing.T) {
    			c := CreateWithToken(
    				rt.cc.serverURL,
    				rt.cc.clusterName,
    				rt.cc.userName,
    				rt.cc.caCert,
    				rt.ccWithToken.token,
    			)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

            patterns:
            - exact: Authorization
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
        pathPrefix: /check
        serverUri:
          cluster: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
          timeout: 10s
          uri: http://my-custom-ext-authz.foo.svc.cluster.local
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

            this.backingRepository = new IvyFileRepository(server.file(contextPath.substring(1)), m2Compatible, dirPattern, ivyFilePattern, artifactFilePattern)
        }
    
        URI getUri() {
            return new URI("${serverUri}${contextPath}")
        }
    
        URI getServerUri() {
            server.uri
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

    import java.net.InetAddress
    import java.net.URLEncoder
    
    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
        id("gradlebuild.module-identity")
    }
    
    val serverUrl = "https://ge.gradle.org"
    val gitCommitName = "gitCommitId"
    val tcBuildTypeName = "tcBuildType"
    
    // We can not use plugin {} because this is registered by a settings plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/kube/portforwarder.go

    	serverURL := req.URL()
    
    	roundTripper, upgrader, err := roundTripperFor(f.restConfig)
    	if err != nil {
    		return nil, fmt.Errorf("failure creating roundtripper: %v", err)
    	}
    
    	dialer := spdy.NewDialer(upgrader, &http.Client{Transport: roundTripper}, http.MethodPost, serverURL)
    
    	fw, err := portforward.NewOnAddresses(dialer,
    		[]string{f.localAddress},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    		// Replace source URL with our test server address.
    		sourceURL := parseURLOrDie(item.sourceURL)
    		serverURL := parseURLOrDie(server.URL)
    		item.input = strings.Replace(item.input, sourceURL.Host, serverURL.Host, -1)
    		item.redirect = strings.Replace(item.redirect, sourceURL.Host, serverURL.Host, -1)
    		sourceURL.Host = serverURL.Host
    
    		req, err := http.NewRequest("GET", sourceURL.String(), nil)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    				t.Fatal("xpected to use a proxy but proxier in SpdyRoundTripper wasn't called")
    			}
    
    			serverURL, err := url.Parse(server.URL)
    			if err != nil {
    				t.Fatalf("error creating request: %s", err)
    			}
    			if proxyCalledWithHost != serverURL.Host {
    				t.Fatalf("expected to see a call to the proxy for backend %q, got %q", serverURL.Host, proxyCalledWithHost)
    			}
    
    			authMethod, authUser := interceptor.GetAuthContext()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    	server := httptest.NewUnstartedServer(http.HandlerFunc(serveHTTP))
    	server.TLS = tlsConfig
    	server.StartTLS()
    
    	// Adjust the path to point to our custom path
    	serverURL, _ := url.Parse(server.URL)
    	serverURL.Path = webhookPath
    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    // A service that can be set to allow all or deny all authorization requests.
    type mockV1beta1Service struct {
    	allow      bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    			if err != nil {
    				t.Errorf("%s: failed to create server: %v", tt.test, err)
    				return
    			}
    
    			serverURL, err := url.Parse(server.URL)
    			if err != nil {
    				t.Errorf("%s: failed to parse the testserver URL: %v", tt.test, err)
    				return
    			}
    			serverURL.Host = net.JoinHostPort("localhost", serverURL.Port())
    
    			defer server.Close()
    
    			// Create a Kubernetes client configuration file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top