Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 507 for DOMAIN (0.11 sec)

  1. src/net/udpsock_test.go

    	{"udp", "127.0.0.1:domain", &UDPAddr{IP: ParseIP("127.0.0.1"), Port: 53}, nil},
    	{"udp", "[::ffff:127.0.0.1]:domain", &UDPAddr{IP: ParseIP("::ffff:127.0.0.1"), Port: 53}, nil},
    	{"udp", "[2001:db8::1]:domain", &UDPAddr{IP: ParseIP("2001:db8::1"), Port: 53}, nil},
    	{"udp4", "127.0.0.1:domain", &UDPAddr{IP: ParseIP("127.0.0.1"), Port: 53}, nil},
    	{"udp4", "[::ffff:127.0.0.1]:domain", &UDPAddr{IP: ParseIP("127.0.0.1"), Port: 53}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. security/pkg/pki/util/generate_cert_test.go

    				NotBefore:   notBefore,
    				TTL:         ttl,
    				Org:         "MyOrg",
    			},
    		},
    		"RSA: Client cert with URI SAN": {
    			certOptions: CertOptions{
    				Host:         "spiffe://domain/ns/bar/sa/foo",
    				NotBefore:    notBefore,
    				TTL:          ttl,
    				SignerCert:   rsaCaCert,
    				SignerPriv:   rsaCaPriv,
    				Org:          "",
    				IsCA:         false,
    				IsSelfSigned: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals(".*\\Qwww.domain.com/test\\E.*", systemHelper.normalizeConfigPath("contains:www.domain.com/test"));
            assertEquals(".*\\Q/test/\\E.*", systemHelper.normalizeConfigPath("contains:/test/"));
            assertEquals("www.domain.com/test", systemHelper.normalizeConfigPath("www.domain.com/test"));
            assertEquals(".*domain.com/.*", systemHelper.normalizeConfigPath(".*domain.com/.*"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/link.go

    func (v *validDomainChecker) skip(i int) {
    	v.s = v.s[i:]
    	v.cut -= i
    }
    
    // parseValidDomain parses a valid domain.
    // https://github.github.com/gfm/#valid-domain
    //
    // If s starts with a valid domain, parseValidDomain returns
    // the length of that domain and true. If s does not start with
    // a valid domain, parseValidDomain returns n, false,
    // where n is the length of a prefix guaranteed not to be acceptable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server_test.go

    			domain:         "",
    			expectedDomain: constants.DefaultClusterLocalDomain,
    			jwtRule:        `{"issuer": "foo", "jwks_uri": "baz", "audiences": ["aud1", "aud2"]}`,
    		},
    		{
    			name:           "override domain",
    			domain:         "mydomain.com",
    			expectedDomain: "mydomain.com",
    		},
    		{
    			name:             "override default secured grpc port",
    			domain:           "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/context_test.go

    				Type: "sidecar", IPAddresses: []string{"1.1.1.1"}, DNSDomain: "domain", ID: "id", IstioVersion: model.MaxIstioVersion,
    				Metadata: &model.NodeMetadata{Raw: map[string]any{}},
    			},
    		},
    		{
    			name:     "Capture Arbitrary Metadata",
    			metadata: map[string]any{"foo": "bar"},
    			out: &model.Proxy{
    				Type: "sidecar", IPAddresses: []string{"1.1.1.1"}, DNSDomain: "domain", ID: "id", IstioVersion: model.MaxIstioVersion,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/controller.go

    	credentialsController credentials.MulticlusterController
    	secretHandler         model.EventHandler
    
    	// the cluster where the gateway-api controller runs
    	cluster cluster.ID
    	// domain stores the cluster domain, typically cluster.local
    	domain string
    
    	// state is our computed Istio resources. Access is guarded by stateMu. This is updated from Reconcile().
    	state   IstioResources
    	stateMu sync.RWMutex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

    /**
     * Idiomatic way of referring to the provider of a well-known element of a collection via a delegate property.
     *
     * `tasks { val jar by existing(Jar::class) }`
     *
     * @param T the domain object type
     * @param C the concrete container type
     * @param type the domain object type
     */
    fun <T : Any, C : NamedDomainObjectCollection<T>, U : T> C.existing(type: KClass<U>): ExistingDomainObjectDelegateProviderWithType<out C, U> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    // domain (with R 2²⁵⁶) as four limbs in little-endian order value.
    type p256Element [4]uint64
    
    // p256One is one in the Montgomery domain.
    var p256One = p256Element{0x0000000000000001, 0xffffffff00000000,
    	0xffffffffffffffff, 0x00000000fffffffe}
    
    var p256Zero = p256Element{}
    
    // p256P is 2²⁵⁶ - 2²²⁴ + 2¹⁹² + 2⁹⁶ - 1 in the Montgomery domain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top