Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 556 for familyOf (0.25 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

         * given OS family.
         *
         * @param family the family to check for
         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family) {
            return isFamily(family, OS_NAME);
        }
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family derived from the given OS name
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. CITATION.cff

      - family-names: Kaiser
        given-names: Lukasz
      - family-names: Kudlur
        given-names: Manjunath
      - family-names: Levenberg
        given-names: Josh
      - family-names: Mané
        given-names: Dan
      - family-names: Schuster
        given-names: Mike
      - family-names: Monga
        given-names: Rajat
      - family-names: Moore
        given-names: Sherry
      - family-names: Murray
        given-names: Derek
      - family-names: Olah
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                    Family getFamily()
                    void setFamily(Family family)
                }
    
                @Managed
                interface Family {
                    String getName()
                    void setName(String name)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void windows(Family family) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/internal/sys/arch.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sys
    
    import "encoding/binary"
    
    // ArchFamily represents a family of one or more related architectures.
    // For example, ppc64 and ppc64le are both members of the PPC64 family.
    type ArchFamily byte
    
    const (
    	NoArch ArchFamily = iota
    	AMD64
    	ARM
    	ARM64
    	I386
    	Loong64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. src/net/main_posix_test.go

    		switch net {
    		case "tcp4":
    			if so.Cookie.Family() == syscall.AF_INET && so.Cookie.Type() == syscall.SOCK_STREAM {
    				return nil, syscall.EHOSTUNREACH
    			}
    		case "udp4":
    			if so.Cookie.Family() == syscall.AF_INET && so.Cookie.Type() == syscall.SOCK_DGRAM {
    				return nil, syscall.EHOSTUNREACH
    			}
    		case "ip4":
    			if so.Cookie.Family() == syscall.AF_INET && so.Cookie.Type() == syscall.SOCK_RAW {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/bigger-applications/package.drawio

                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/address.go

    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    func (a *Inet4Addr) Family() int { return syscall.AF_INET }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/net/internal/socktest/switch.go

    	for i, s := range sw.sotab {
    		tab[i] = s
    	}
    	sw.smu.RUnlock()
    	return tab
    }
    
    // A Cookie represents a 3-tuple of a socket; address family, socket
    // type and protocol number.
    type Cookie uint64
    
    // Family returns an address family.
    func (c Cookie) Family() int { return int(c >> 48) }
    
    // Type returns a socket type.
    func (c Cookie) Type() int { return int(c << 16 >> 32) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/syscall/route_bsd.go

    			sas[i] = sa
    			b = b[rsaAlignOf(int(rsa.Len)):]
    		case AF_INET, AF_INET6:
    			sa, err := parseSockaddrInet(b, rsa.Family)
    			if err != nil {
    				return nil, err
    			}
    			sas[i] = sa
    			b = b[rsaAlignOf(int(rsa.Len)):]
    			family = rsa.Family
    		default:
    			sa, err := parseNetworkLayerAddr(b, family)
    			if err != nil {
    				return nil, err
    			}
    			sas[i] = sa
    			b = b[rsaAlignOf(int(b[0])):]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/target.go

    }
    
    func (t *Target) IsLOONG64() bool {
    	return t.Arch.Family == sys.Loong64
    }
    
    func (t *Target) IsPPC64() bool {
    	return t.Arch.Family == sys.PPC64
    }
    
    func (t *Target) IsRISCV64() bool {
    	return t.Arch.Family == sys.RISCV64
    }
    
    func (t *Target) IsS390X() bool {
    	return t.Arch.Family == sys.S390X
    }
    
    func (t *Target) IsWasm() bool {
    	return t.Arch.Family == sys.Wasm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top