Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for 4291 (0.04 sec)

  1. src/syscall/zsysnum_linux_mips.go

    	SYS_MKNODAT                = 4290
    	SYS_FCHOWNAT               = 4291
    	SYS_FUTIMESAT              = 4292
    	SYS_FSTATAT64              = 4293
    	SYS_UNLINKAT               = 4294
    	SYS_RENAMEAT               = 4295
    	SYS_LINKAT                 = 4296
    	SYS_SYMLINKAT              = 4297
    	SYS_READLINKAT             = 4298
    	SYS_FCHMODAT               = 4299
    	SYS_FACCESSAT              = 4300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_FUTIMESAT                    = 4292
    	SYS_FSTATAT64                    = 4293
    	SYS_UNLINKAT                     = 4294
    	SYS_RENAMEAT                     = 4295
    	SYS_LINKAT                       = 4296
    	SYS_SYMLINKAT                    = 4297
    	SYS_READLINKAT                   = 4298
    	SYS_FCHMODAT                     = 4299
    	SYS_FACCESSAT                    = 4300
    	SYS_PSELECT6                     = 4301
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_linux_mipsle.go

    	SYS_MKNODAT                = 4290
    	SYS_FCHOWNAT               = 4291
    	SYS_FUTIMESAT              = 4292
    	SYS_FSTATAT64              = 4293
    	SYS_UNLINKAT               = 4294
    	SYS_RENAMEAT               = 4295
    	SYS_LINKAT                 = 4296
    	SYS_SYMLINKAT              = 4297
    	SYS_READLINKAT             = 4298
    	SYS_FCHMODAT               = 4299
    	SYS_FACCESSAT              = 4300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    	SYS_FUTIMESAT                    = 4292
    	SYS_FSTATAT64                    = 4293
    	SYS_UNLINKAT                     = 4294
    	SYS_RENAMEAT                     = 4295
    	SYS_LINKAT                       = 4296
    	SYS_SYMLINKAT                    = 4297
    	SYS_READLINKAT                   = 4298
    	SYS_FCHMODAT                     = 4299
    	SYS_FACCESSAT                    = 4300
    	SYS_PSELECT6                     = 4301
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/net/ip.go

    }
    
    // IsGlobalUnicast reports whether ip is a global unicast
    // address.
    //
    // The identification of global unicast addresses uses address type
    // identification as defined in RFC 1122, RFC 4632 and RFC 4291 with
    // the exception of IPv4 directed broadcast addresses.
    // It returns true even if ip is in IPv4 private address space or
    // local IPv6 unicast address space.
    func (ip IP) IsGlobalUnicast() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pkg/monitoring/monitortest/test.go

    	name  string
    	attrs attribute.Set
    }
    
    var reg = lazy.New(func() (prometheus.Gatherer, error) {
    	// TODO: do not use a global and/or add a way to reset (https://github.com/open-telemetry/opentelemetry-go/issues/4291)
    	reg := prometheus.NewRegistry()
    	_, err := monitoring.RegisterPrometheusExporter(reg, reg)
    	if err != nil {
    		return nil, err
    	}
    	return reg, nil
    })
    
    func TestRegistry(t test.Failer) prometheus.Gatherer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/net/ipsock.go

    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv6Enabled
    }
    
    // supportsIPv4map reports whether the platform supports mapping an
    // IPv4 address inside an IPv6 address at transport layer
    // protocols. See RFC 4291, RFC 4038 and RFC 3493.
    func supportsIPv4map() bool {
    	// Some operating systems provide no support for mapping IPv4
    	// addresses to IPv6, and a runtime check is unnecessary.
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/net/interface_test.go

    					return nil, fmt.Errorf("unexpected prefix length: %d/%d for %#v", prefixLen, maxPrefixLen, ifa)
    				}
    				if ifa.IP.IsLoopback() && prefixLen != 8*IPv6len { // see RFC 4291
    					return nil, fmt.Errorf("unexpected prefix length: %d/%d for %#v", prefixLen, maxPrefixLen, ifa)
    				}
    				stats.ipv6++
    			}
    		case *IPAddr:
    			if ifa == nil || ifa.IP == nil || ifa.IP.IsMulticast() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. src/net/ip_test.go

    		t.Fatal(err)
    	}
    	if !reflect.DeepEqual(got, []byte("")) {
    		t.Errorf(`got %#v, want []byte("")`, got)
    	}
    }
    
    var ipStringTests = []*struct {
    	in  IP     // see RFC 791 and RFC 4291
    	str string // see RFC 791, RFC 4291 and RFC 5952
    	byt []byte
    	error
    }{
    	// IPv4 address
    	{
    		IP{192, 0, 2, 1},
    		"192.0.2.1",
    		[]byte("192.0.2.1"),
    		nil,
    	},
    	{
    		IP{0, 0, 0, 0},
    		"0.0.0.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

       *
       * <p>For more on IPv4 compatible addresses see section 2.5.5.1 of <a target="_parent"
       * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>.
       *
       * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it
       * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top