Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 196 for DOMAIN (0.39 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.cni.injected

        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            resources: {}
          - args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
            - --proxyLogLevel=warning
            - --proxyComponentLogLevel=misc:error
            - --log_output_level=default:info
            env:
            - name: PILOT_CERT_PROVIDER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return sid.Copy()
    }
    
    // LookupSID retrieves a security identifier SID for the account
    // and the name of the domain on which the account was found.
    // System specify target computer to search.
    func LookupSID(system, account string) (sid *SID, domain string, accType uint32, err error) {
    	if len(account) == 0 {
    		return nil, "", 0, syscall.EINVAL
    	}
    	acc, e := UTF16PtrFromString(account)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	// The hostname of the Pod, by default equals to pod name.
    	hostname string
    	// If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
    	subDomain string
    	// If in k8s, the node where the pod resides
    	nodeName string
    }
    
    func (c *Controller) NewEndpointBuilder(pod *v1.Pod) *EndpointBuilder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	DefaultRootCertFilePath = "./etc/certs/root-cert.pem"
    
    	// WorkloadIdentitySocketPath is the well-known path to the Unix Domain Socket for SDS.
    	WorkloadIdentitySocketPath = "./var/run/secrets/workload-spiffe-uds/socket"
    
    	// CredentialNameSocketPath is the well-known path to the Unix Domain Socket for Credential Name.
    	CredentialNameSocketPath = "./var/run/secrets/credential-uds/socket"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    type RemoteKubeClientGetter func(clusterID cluster.ID) kubernetes.Interface
    
    // KubeJWTAuthenticator authenticates K8s JWTs.
    type KubeJWTAuthenticator struct {
    	// holder of a mesh configuration for dynamically updating trust domain
    	meshHolder mesh.Holder
    
    	// Primary cluster kube client
    	kubeClient kubernetes.Interface
    	// Primary cluster ID
    	clusterID cluster.ID
    
    	// remote cluster kubeClient getter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

            sidecar.istio.io/inject: "false"
            topology.istio.io/network: network-1
        spec:
          containers:
          - args:
            - proxy
            - waypoint
            - --domain
            - $(POD_NAMESPACE).svc.<no value>
            - --serviceCluster
            - namespace.$(POD_NAMESPACE)
            - --proxyLogLevel
            - <nil>
            - --proxyComponentLogLevel
            - <nil>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

            sidecar.istio.io/inject: "false"
            topology.istio.io/network: network-1
        spec:
          containers:
          - args:
            - proxy
            - waypoint
            - --domain
            - $(POD_NAMESPACE).svc.<no value>
            - --serviceCluster
            - namespace.$(POD_NAMESPACE)
            - --proxyLogLevel
            - <nil>
            - --proxyComponentLogLevel
            - <nil>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    foo.convention("other")
                }
            """
    
            expect:
            succeeds 'mytask'
        }
    
        def "emits deprecation warning when convention mapping is used with Provider in domain object other than task"() {
            buildFile << """
                abstract class MyExtension {
                    abstract Property<String> getOther()
    
                    Provider<String> getFoo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. cluster/addons/dns/kube-dns/kube-dns.yaml.in

              # only setup the /readiness HTTP server once that's available.
              initialDelaySeconds: 3
              timeoutSeconds: 5
            args:
            - --domain=dns_domain.
            - --dns-port=10053
            - --config-dir=/kube-dns-config
            - --v=2
            env:
            - name: PROMETHEUS_PORT
              value: "10055"
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/net/lookup_test.go

    // mDNS, and may use platform-dependent DNS stub resolver if possible.
    // The APIs accept any of forms for a query; host name in various
    // encodings, UTF-8 encoded net name, domain name, FQDN or absolute
    // FQDN, but the result would be one of the forms and it depends on
    // the circumstances.
    
    var lookupGoogleSRVTests = []struct {
    	service, proto, name string
    	cname, target        string
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top