Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for UTS (0.02 sec)

  1. src/cmd/internal/osinfo/os_unix.go

    // Version returns the OS version name/number.
    func Version() (string, error) {
    	var uts unix.Utsname
    	if err := unix.Uname(&uts); err != nil {
    		return "", err
    	}
    
    	sysname := unix.ByteSliceToString(uts.Sysname[:])
    	release := unix.ByteSliceToString(uts.Release[:])
    	version := unix.ByteSliceToString(uts.Version[:])
    	machine := unix.ByteSliceToString(uts.Machine[:])
    
    	return sysname + " " + release + " " + version + " " + machine, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 666 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    //go:build !go1.10
    
    // Package idna implements IDNA2008 using the compatibility processing
    // defined by UTS (Unicode Technical Standard) #46, which defines a standard to
    // deal with the transition from IDNA2003.
    //
    // IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC
    // 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894.
    // UTS #46 is defined in https://www.unicode.org/reports/tr46.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    //go:build go1.10
    
    // Package idna implements IDNA2008 using the compatibility processing
    // defined by UTS (Unicode Technical Standard) #46, which defines a standard to
    // deal with the transition from IDNA2003.
    //
    // IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC
    // 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894.
    // UTS #46 is defined in https://www.unicode.org/reports/tr46.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/trie13.0.0.go

    // license that can be found in the LICENSE file.
    
    //go:build go1.16
    
    package idna
    
    // appendMapping appends the mapping for the respective rune. isMapped must be
    // true. A mapping is a categorization of a rune as defined in UTS #46.
    func (c info) appendMapping(b []byte, s string) []byte {
    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		p := index
    		return append(b, mappings[mappingIndex[p]:mappingIndex[p+1]]...)
    	}
    	b = append(b, s...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 872 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/trie12.0.0.go

    //go:build !go1.16
    
    package idna
    
    // appendMapping appends the mapping for the respective rune. isMapped must be
    // true. A mapping is a categorization of a rune as defined in UTS #46.
    func (c info) appendMapping(b []byte, s string) []byte {
    	index := int(c >> indexShift)
    	if c&xorBit == 0 {
    		s := mappings[index:]
    		return append(b, s[1:s[0]+1]...)
    	}
    	b = append(b, s...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 852 bytes
    - Viewed (0)
  6. src/os/exec_unix_test.go

    	// being used is extremely unlikely.
    	pid := math.MaxInt32
    	if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
    		// Solaris/Illumos have a lower limit, above which wait returns
    		// EINVAL (see waitid in usr/src/uts/common/os/exit.c in
    		// illumos). This is configurable via sysconf(_SC_MAXPID), but
    		// we'll just take the default.
    		pid = 30000-1
    	}
    
    	p, err := FindProcess(pid)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/net/tcpconn_keepalive_illumos_test.go

    	}
    
    	if cfg.Idle == -1 {
    		cfg.Idle = oldCfg.Idle
    	}
    	// Check out the comment on KeepAliveConfig and the illumos code:
    	// https://github.com/illumos/illumos-gate/blob/0886dcadf4b2cd677c3b944167f0d16ccb243616/usr/src/uts/common/inet/tcp/tcp_opt_data.c#L786-L861
    	tcpKeepAliveAbortThreshold := defaultTcpKeepAliveAbortThreshold
    	switch {
    	case cfg.Interval == -1 && cfg.Count == -1:
    		cfg.Interval = oldCfg.Interval
    		cfg.Count = oldCfg.Count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

        private MavenRepositorySystemUtils() {
            // hide constructor
        }
    
        /**
         * This method is deprecated, nobody should use it.
         *
         * @deprecated This method is here only for legacy uses (like UTs), nothing else should use it.
         */
        @Deprecated
        public static DefaultRepositorySystemSession newSession() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (1)
  9. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     * direct translation of the pseudocode presented there.
     *
     * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do.
     *
     * [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492
     * [RFC 5890]: https://datatracker.ietf.org/doc/html/rfc5890
     * [UTS #46]: https://www.unicode.org/reports/tr46/
     */
    object Punycode {
      val PREFIX_STRING = "xn--"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. istioctl/pkg/workload/workload.go

    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/shellescape"
    )
    
    var (
    	// TODO refactor away from package vars and add more UTs
    	tokenDuration  int64
    	name           string
    	serviceAccount string
    	filename       string
    	outputDir      string
    	clusterID      string
    	ingressIP      string
    	internalIP     string
    	externalIP     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top