Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for serverAddress (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 411 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.APIGroup.yaml

    apiVersion: v1
    kind: APIGroup
    name: nameValue
    preferredVersion:
      groupVersion: groupVersionValue
      version: versionValue
    serverAddressByClientCIDRs:
    - clientCIDR: clientCIDRValue
      serverAddress: serverAddressValue
    versions:
    - groupVersion: groupVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 284 bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            processed.shouldPublishJvmMemoryInfo() == original.shouldPublishJvmMemoryInfo()
            processed.gradleUserHomeDirPath == original.gradleUserHomeDirPath
            processed.serverAddress == original.serverAddress
            processed.workerId == original.workerId
            processed.displayName == original.displayName
            processed.workerAction instanceof TestAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.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)
  5. api/openapi-spec/v3/apis__resource.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)
  6. api/openapi-spec/v3/apis__autoscaling_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)
  7. api/openapi-spec/v3/apis__apiextensions.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)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 411 bytes
    - Viewed (0)
  9. pilot/pkg/grpc/tls.go

    )
    
    // TLSOptions include TLS options that a grpc client uses to connect with server.
    type TLSOptions struct {
    	RootCert      string
    	Key           string
    	Cert          string
    	ServerAddress string
    	SAN           string
    }
    
    func getTLSDialOption(opts *TLSOptions) (grpc.DialOption, error) {
    	rootCert, err := getRootCertificate(opts.RootCert)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfigSerializer.java

            NativeServicesMode nativeServicesMode = NativeServicesMode.values()[decoder.readSmallInt()];
            String gradleUserHomeDirPath = decoder.readString();
            MultiChoiceAddress serverAddress = new MultiChoiceAddressSerializer().read(decoder);
            final long workerId = decoder.readSmallLong();
            final String displayName = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top