Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 507 for DOMAIN (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/CompositeDomainObjectSet.java

    import java.util.Collections;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A domain object collection that presents a combined view of one or more collections.
     *
     * @param <T> The type of domain objects in the component collections of this collection.
     */
    public class CompositeDomainObjectSet<T> extends DelegatingDomainObjectSet<T> implements WithEstimatedSize {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            then:
            container.size() == 1
            container.findByName("fred") == fred
            first == second
        }
    
        def "throws meaningful exception if it doesn't support creating domain objects without specifying a type"() {
            container = createContainer()
    
            when:
            container.create("fred")
    
            then:
            InvalidUserDataException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p224_fiat64.go

    // The type p224MontgomeryDomainFieldElement is a field element in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p224MontgomeryDomainFieldElement [4]uint64
    
    // The type p224NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SOCKET, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // IngressRuleValue. If the host is unspecified, the Ingress routes all
      // traffic based on the specified IngressRuleValue.
      //
      // host can be "precise" which is a domain name without the terminating dot of
      // a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
      // prefixed with a single wildcard label (e.g. "*.foo.com").
      // The wildcard character '*' must appear by itself as the first DNS label and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/crypto/x509/name_constraints_test.go

    		if !ok {
    			continue
    		}
    
    		if mailbox.local != test.localPart || mailbox.domain != test.domain {
    			t.Errorf("#%d: %q parsed as (%q, %q), but wanted (%q, %q)", i, test.in, mailbox.local, mailbox.domain, test.localPart, test.domain)
    		}
    	}
    }
    
    func TestBadNamesInConstraints(t *testing.T) {
    	constraintParseError := func(err error) bool {
    		str := err.Error()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/fiat/p256_fiat64.go

    // The type p256MontgomeryDomainFieldElement is a field element in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p256MontgomeryDomainFieldElement [4]uint64
    
    // The type p256NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  9. src/net/mail/message_test.go

    		21: {"<jdoe@[" + string([]byte{0xed, 0xa0, 0x80}) + "192.168.0.1]>", "invalid utf-8 in domain-literal"},
    		22: {"<jdoe@[[192.168.0.1]>", "bad character in domain-literal"},
    		23: {"<jdoe@[192.168.0.1>", "unclosed domain-literal"},
    		24: {"<jdoe@[256.0.0.1]>", "invalid IP address in domain-literal"},
    	}
    
    	for i, tc := range mustErrTestCases {
    		_, err := ParseAddress(tc.text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top