Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for serverAddress (0.14 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
              "serverAddress"
            ],
            "type": "object"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__coordination.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
              "serverAddress"
            ],
            "type": "object"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiregistration.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
              "serverAddress"
            ],
            "type": "object"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	for _, currentCreds := range creds {
    		auth := &runtimeapi.AuthConfig{
    			Username:      currentCreds.Username,
    			Password:      currentCreds.Password,
    			Auth:          currentCreds.Auth,
    			ServerAddress: currentCreds.ServerAddress,
    			IdentityToken: currentCreds.IdentityToken,
    			RegistryToken: currentCreds.RegistryToken,
    		}
    
    		imageRef, err := m.imageService.PullImage(ctx, imgSpec, auth, podSandboxConfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

            final services = ServiceRegistryBuilder.builder().provider(new TestMessagingServices()).build()
    
            Client(Address serverAddress) {
                def client = services.get(MessagingClient)
                connection = client.getConnection(serverAddress)
            }
    
            @Override
            void stop() {
                connection?.stop()
                services.close()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
              "serverAddress"
            ],
            "type": "object"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

         */
        public void prepareJavaCommand(long workerId, String displayName, WorkerProcessBuilder processBuilder, List<URL> implementationClassPath, List<URL> implementationModulePath, Address serverAddress, JavaExecHandleBuilder execSpec, boolean publishProcessInfo, boolean useOptionsFile) {
            Collection<File> applicationClasspath = processBuilder.getApplicationClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/credentialprovider/keyring.go

    	// Email is an optional value associated with the username.
    	// This field is deprecated and will be removed in a later
    	// version of docker.
    	Email string `json:"email,omitempty"`
    
    	ServerAddress string `json:"serveraddress,omitempty"`
    
    	// IdentityToken is used to authenticate the user and get
    	// an access token for the registry.
    	IdentityToken string `json:"identitytoken,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	if c.tlsOpts != nil {
    		return &istiogrpc.TLSOptions{
    			RootCert:      c.tlsOpts.RootCert,
    			Key:           c.tlsOpts.Key,
    			Cert:          c.tlsOpts.Cert,
    			ServerAddress: c.opts.CAEndpoint,
    			SAN:           c.opts.CAEndpointSAN,
    		}
    	}
    	return nil
    }
    
    func (c *CitadelClient) buildConnection() (*grpc.ClientConn, error) {
    	tlsOpts := c.getTLSOptions()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/net/rpc/server.go

    	}
    	go http.Serve(l, nil)
    
    At this point, clients can see a service "Arith" with methods "Arith.Multiply" and
    "Arith.Divide".  To invoke one, a client first dials the server:
    
    	client, err := rpc.DialHTTP("tcp", serverAddress + ":1234")
    	if err != nil {
    		log.Fatal("dialing:", err)
    	}
    
    Then it can make a remote call:
    
    	// Synchronous call
    	args := &server.Args{7,8}
    	var reply int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top