Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 357 for doMain (0.13 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/cookie.go

    			// into a host-only cookie. A leading dot is okay
    			// but won't be sent.
    			d := c.Domain
    			if d[0] == '.' {
    				d = d[1:]
    			}
    			b.WriteString("; Domain=")
    			b.WriteString(d)
    		} else {
    			log.Printf("net/http: invalid Cookie.Domain %q; dropping domain attribute", c.Domain)
    		}
    	}
    	var buf [len(TimeFormat)]byte
    	if validCookieExpires(c.Expires) {
    		b.WriteString("; Expires=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    		m, err := ParseIdentity(id)
    		if err != nil {
    			spiffeLog.Errorf("Failed to extract SPIFFE trust domain from %v: %v", id, err)
    			continue
    		}
    		for _, td := range trustDomainAliases {
    			m.TrustDomain = td
    			out.Insert(m.String())
    		}
    	}
    	return out
    }
    
    // GetTrustDomainFromURISAN extracts the trust domain part from the URI SAN in the X.509 certificate.
    func GetTrustDomainFromURISAN(uriSan string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: isolation-istio.gateway-conformance-infra.svc.domain.suffix
        internal.istio.io/parents: Gateway/isolation/empty-hostname.gateway-conformance-infra
      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top