Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for zero (0.11 sec)

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

    const (
    	FADV_NORMAL     = 0x0
    	FADV_RANDOM     = 0x1
    	FADV_SEQUENTIAL = 0x2
    	FADV_WILLNEED   = 0x3
    )
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (Zero [0] _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_1
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Zero [1] ptr mem)
    	// result: (MOVBstore ptr (MOVWconst [0]) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - `VolumeBindingArgs` now allow `BindTimeoutSeconds` to be set as zero, while the value zero indicates no waiting for the checking of volume binding operation. ([#99835](https://github.com/kubernetes/kubernetes/pull/99835), [@chendave](https://github.com/chendave)) [SIG Scheduling and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - In the PriorityLevelConfiguration object, the `nominalConcurrencyShares` field now accepts a zero value in both the `flowcontrol.apiserver.k8s.io/v1` and `flowcontrol.apiserver.k8s.io/v1beta3` APIs.
       ([#123001](https://github.com/kubernetes/kubernetes/pull/123001), [@tkashem](https://github.com/tkashem))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

      # Configure the MTU to use for workload interfaces and tunnels.
      # By default, MTU is auto-detected, and explicitly setting this field should not be required.
      # You can override auto-detection by providing a non-zero value.
      veth_mtu: "0"
    
      # The CNI network configuration to install on each node. The special
      # values in this config will be automatically populated.
      cni_network_config: |-
        {
          "name": "k8s-pod-network",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.11.md

     ([#64792](https://github.com/kubernetes/kubernetes/pull/64792), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		f := reflectType.Field(i)
    		if allowedFields[f.Name] {
    			continue
    		}
    
    		// Compare the value of this field to its zero value to determine if it has been set
    		if !reflect.DeepEqual(reflectValue.Field(i).Interface(), reflect.Zero(f.Type).Interface()) {
    			r, n := utf8.DecodeRuneInString(f.Name)
    			lcName := string(unicode.ToLower(r)) + f.Name[n:]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 46
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 48 blocks, 3072 entries, 6144 bytes
    // The third block is the zero block.
    var nfcValues = [3072]uint16{
    	// Block 0x0, offset 0x0
    	0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,
    	// Block 0x1, offset 0x40
    	0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 44
    		return uint16(nfcSparse.lookup(n, b))
    	}
    }
    
    // nfcValues: 46 blocks, 2944 entries, 5888 bytes
    // The third block is the zero block.
    var nfcValues = [2944]uint16{
    	// Block 0x0, offset 0x0
    	0x3c: 0xa000, 0x3d: 0xa000, 0x3e: 0xa000,
    	// Block 0x1, offset 0x40
    	0x41: 0xa000, 0x42: 0xa000, 0x43: 0xa000, 0x44: 0xa000, 0x45: 0xa000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    font-variant-numeric":{},"--tw-ordinal":"ordinal","font-variant-numeric":t},".slashed-zero":{"@defaults font-variant-numeric":{},"--tw-slashed-zero":"slashed-zero","font-variant-numeric":t},".lining-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"lining-nums","font-variant-numeric":t},".oldstyle-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"oldstyle-nums","font-variant-numeric":t},".proportional-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"proporti...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top