Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for server_uri (0.32 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                      NODE_ID="sidecar~${INSTANCE_IP}~${POD_NAME}.${POD_NAMESPACE}~cluster.local"
                      SERVER_URI="dns:///istiod.${ISTIO_NAMESPACE}.svc:15010"
                      echo '
                      {
                        "xds_servers": [
                          {
                            "server_uri": "'${SERVER_URI}'",
                            "channel_creds": [{"type": "insecure"}],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    		b.Fatalf("this should never happen? %v", err)
    	}
    
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	for _, tt := range webhooktesting.NewNonMutatingTestCases(serverURL) {
    		// For now, skip failure cases or tests that explicitly skip benchmarking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		testServerURL = testServer.URL
    	}
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    		b.Fatalf("this should never happen? %v", err)
    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	testCases := append(webhooktesting.NewMutatingTestCases(serverURL, "test-webhooks"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                } catch (JSchException e) {
                    URI serverUri = URI.create(String.format("sftp://%s:%d", sftpHost.getHostname(), sftpHost.getPort()));
                    if (e.getMessage().equals("Auth fail")) {
                        throw new ResourceException(serverUri, String.format("Password authentication not supported or invalid credentials for SFTP server at %s", serverUri), e);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CookiesTest.kt

        server.enqueue(MockResponse())
        val serverUrl = urlWithIpAddress(server, "/")
        val cookieManager = CookieManager(null, CookiePolicy.ACCEPT_ORIGINAL_SERVER)
        val cookieA = HttpCookie("a", "android")
        cookieA.domain = serverUrl.host
        cookieA.path = "/"
        cookieManager.cookieStore.add(serverUrl.toUri(), cookieA)
        val cookieB = HttpCookie("b", "banana")
        cookieB.domain = serverUrl.host
        cookieB.path = "/"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/customTask/kotlin/build.gradle.kts

    }
    
    binaryRepo {
        coordinates = "commons-lang:commons-lang"
        serverUrl = "http://repo2.myorg.org/maven2"
    }
    // end::plugin-extension[]
    
    // tag::direct-task-register[]
    tasks.register<LatestArtifactVersion>("latestVersionMavenCentral") {
        coordinates = "commons-lang:commons-lang"
        serverUrl = "http://repo1.maven.org/maven2"
    }
    
    tasks.register<LatestArtifactVersion>("latestVersionInhouseRepo") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 655 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/customTask/groovy/build.gradle

    }
    
    binaryRepo {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo2.myorg.org/maven2'
    }
    // end::plugin-extension[]
    
    // tag::direct-task-register[]
    tasks.register('latestVersionMavenCentral', LatestArtifactVersion) {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo1.maven.org/maven2'
    }
    
    tasks.register('latestVersionInhouseRepo', LatestArtifactVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/preflight/checks.go

    	}
    	if conn, err := net.DialTimeout(scheme, connURL.Host, connectionTimeout); err == nil {
    		defer conn.Close()
    		return true
    	}
    	return false
    }
    
    func parseServerURI(serverURI string) (*url.URL, error) {
    	connURL, err := url.Parse(serverURI)
    	if err != nil {
    		return &url.URL{}, fmt.Errorf("unable to parse etcd url: %v", err)
    	}
    	return connURL, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 20 10:50:48 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/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 20 12:45:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    func CreateBasic(serverURL, clusterName, userName string, caCert []byte) *clientcmdapi.Config {
    	// Use the cluster and the username as the context name
    	contextName := fmt.Sprintf("%s@%s", userName, clusterName)
    
    	return &clientcmdapi.Config{
    		Clusters: map[string]*clientcmdapi.Cluster{
    			clusterName: {
    				Server:                   serverURL,
    				CertificateAuthorityData: caCert,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top