Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 293 for DOMAIN (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

            readinessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
            resources: {}
          - args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.cluster.local
            - --proxyLogLevel=warning
            - --proxyComponentLogLevel=misc:error
            - --log_output_level=default:info
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

            service.istio.io/canonical-revision: latest
            sidecar.istio.io/inject: "false"
        spec:
          containers:
          - args:
            - proxy
            - router
            - --domain
            - $(POD_NAMESPACE).svc.<no value>
            - --proxyLogLevel
            - <nil>
            - --proxyComponentLogLevel
            - <nil>
            - --log_output_level
            - <nil>
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

            service.istio.io/canonical-revision: latest
            sidecar.istio.io/inject: "false"
        spec:
          containers:
          - args:
            - proxy
            - router
            - --domain
            - $(POD_NAMESPACE).svc.<no value>
            - --proxyLogLevel
            - <nil>
            - --proxyComponentLogLevel
            - <nil>
            - --log_output_level
            - <nil>
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/scalar.go

    //
    // This type works similarly to math/big.Int, and all arguments and
    // receivers are allowed to alias.
    //
    // The zero value is a valid zero element.
    type Scalar struct {
    	// s is the scalar in the Montgomery domain, in the format of the
    	// fiat-crypto implementation.
    	s fiatScalarMontgomeryDomainFieldElement
    }
    
    // The field implementation in scalar_fiat.go is generated by the fiat-crypto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    		return proxy.Metadata.Namespace
    	}
    
    	// if not found, for backward compatibility, extract the namespace from
    	// the proxy domain. this is a k8s specific hack and should be enabled
    	parts := strings.Split(proxy.DNSDomain, ".")
    	if len(parts) > 1 { // k8s will have namespace.<domain>
    		return parts[0]
    	}
    
    	return ""
    }
    
    const (
    	serviceNodeSeparator = "~"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. operator/pkg/validate/validate_values_test.go

    global:
      podDNSSearchNamespaces:
      - "my-namespace"
      proxy:
        includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
        excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
        excludeInboundPorts: "333,444"
        clusterDomain: "my.domain"
        lifecycle:
          preStop:
            exec:
              command: ["/bin/sh", "-c", "sleep 30"]
    `,
    		},
    		{
    			desc: "CNIConfig",
    			yamlStr: `
    cni:
      cniBinDir: "/var/lib/cni/bin"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    		result, err := matchDomainConstraint(test.domain, test.constraint)
    
    		if err != nil && !test.expectError {
    			t.Errorf("unexpected error for test #%d: domain=%s, constraint=%s, err=%s", i, test.domain, test.constraint, err)
    			continue
    		}
    
    		if err == nil && test.expectError {
    			t.Errorf("unexpected success for test #%d: domain=%s, constraint=%s", i, test.domain, test.constraint)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top