Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 335 for DOMAIN (0.07 sec)

  1. apache-maven/src/main/appended-resources/licenses/Public-Domain.txt

    Public Domain...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 13 bytes
    - Viewed (0)
  2. src/net/http/cookiejar/jar.go

    		// domain cookies when there is no domain; the whole notion of
    		// domain cookies requires a domain name to be well defined.
    		return host, true, nil
    	}
    
    	// From here on: If the cookie is valid, it is a domain cookie (with
    	// the one exception of a public suffix below).
    	// See RFC 6265 section 5.2.3.
    	if domain[0] == '.' {
    		domain = domain[1:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cookie.kt

          }
    
        /**
         * Set the domain pattern for this cookie. The cookie will match [domain] and all of its
         * subdomains.
         */
        fun domain(domain: String): Builder = domain(domain, false)
    
        /**
         * Set the host-only domain for this cookie. The cookie will match [domain] but none of
         * its subdomains.
         */
        fun hostOnlyDomain(domain: String): Builder = domain(domain, true)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar_test.go

    		"http://foo.bar.com",
    		[]string{
    			"a=1; domain=.yo.foo.bar.com",
    			"b=2; domain=.foo.com",
    			"c=3; domain=.bar.foo.com",
    			"d=4; domain=.foo.bar.com.net",
    			"e=5; domain=ar.com",
    			"f=6; domain=.",
    			"g=7; domain=/",
    			"h=8; domain=http://foo.bar.com",
    			"i=9; domain=..foo.bar.com",
    			"j=10; domain=..bar.com",
    			"k=11; domain=.foo.bar.com?blah",
    			"l=12; domain=.foo.bar.com/blah",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion_test.go

    		Ports:    ports,
    		Hostname: "httpbin-apple.apple.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "banana",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-banana.banana.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "default",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-second.default.svc.domain.suffix",
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

    // tag::dos[]
    abstract class MyPluginExtensionDomainObjectSet {
        // Define a domain object set to hold strings
        val myStrings: DomainObjectSet<String> = project.objects.domainObjectSet(String::class)
    
        // Add some strings to the domain object set
        fun addString(value: String) {
            myStrings.add(value)
        }
    }
    // end::dos[]
    
    // tag::ndos[]
    // tag::ndol[]
    // tag::ndoc[]
    abstract class Person(val name: String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

      private fun String.isAscii() = length == utf8Size().toInt()
    
      /**
       * Returns true if [hostname] matches the domain name [pattern].
       *
       * @param hostname lower-case host name.
       * @param pattern domain name pattern from certificate. May be a wildcard pattern such as
       *     `*.android.com`.
       */
      private fun verifyHostname(
        hostname: String?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

    import com.tngtech.archunit.core.domain.JavaAnnotation;
    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.core.domain.JavaGenericArrayType;
    import com.tngtech.archunit.core.domain.JavaMember;
    import com.tngtech.archunit.core.domain.JavaMethod;
    import com.tngtech.archunit.core.domain.JavaModifier;
    import com.tngtech.archunit.core.domain.JavaParameter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    					// Request from local trust domain should always allowed.
    					verify(t, client, "cluster.local", httpMTLS, scheme.HTTP, true)
    					verify(t, client, "cluster.local", tcpMTLS, scheme.TCP, true)
    
    					// Trust domain foo is added as trust domain alias.
    					// Request from trust domain bar should be denied.
    					// Request from trust domain foo should be allowed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

    // tag::dos[]
    abstract class MyPluginExtensionDomainObjectSet {
        // Define a domain object set to hold strings
        DomainObjectSet<String> myStrings = project.objects.domainObjectSet(String)
    
        // Add some strings to the domain object set
        void addString(String value) {
            myStrings.add(value)
        }
    }
    // end::dos[]
    
    // tag::ndos[]
    // tag::ndol[]
    // tag::ndoc[]
    abstract class Person {
        String name
    }
    // end::ndol[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top