Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for nbits (0.39 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		},
    		sys.AMD64)
    	alias("math/bits", "Div", "math/bits", "Div64", sys.ArchAMD64)
    
    	alias("runtime/internal/sys", "TrailingZeros8", "math/bits", "TrailingZeros8", all...)
    	alias("runtime/internal/sys", "TrailingZeros32", "math/bits", "TrailingZeros32", all...)
    	alias("runtime/internal/sys", "TrailingZeros64", "math/bits", "TrailingZeros64", all...)
    	alias("runtime/internal/sys", "Len8", "math/bits", "Len8", all...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"mode":             "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // Optional: mode bits to use on created files by default. Must be a
      // Optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
      // YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
      // Defaults to 0644.
      // Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Optional: mode bits to use on created files by default. Must be a
    	// Optional: mode bits used to set permissions on created files by default.
    	// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
    	// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
    	// Defaults to 0644.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// +optional
    	Items []KeyToPath
    	// Mode bits to use on created files by default. Must be a value between
    	// 0 and 0777.
    	// Directories within the path are not affected by this setting.
    	// This might be in conflict with other options that affect the file
    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. doc/go_spec.html

    implementation must:
    </p>
    
    <ul>
    	<li>Represent integer constants with at least 256 bits.</li>
    
    	<li>Represent floating-point constants, including the parts of
    	    a complex constant, with a mantissa of at least 256 bits
    	    and a signed binary exponent of at least 16 bits.</li>
    
    	<li>Give an error if unable to represent an integer constant
    	    precisely.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. prow/config/calico.yaml

                  iptablesMarkMask:
                    description: 'IptablesMarkMask is the mask that Felix selects its
                      IPTables Mark bits from. Should be a 32 bit hexadecimal number with
                      at least 8 bits set, none of which clash with any other mark bits
                      in use on the system. [Default: 0xff000000]'
                    format: int32
                    type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    var http2bufPools [7]sync.Pool // of *[]byte
    
    func http2bufPoolIndex(size int) int {
    	if size <= 16384 {
    		return 0
    	}
    	size -= 1
    	bits := bits.Len(uint(size))
    	index := bits - 14
    	if index >= len(http2bufPools) {
    		return len(http2bufPools) - 1
    	}
    	return index
    }
    
    func (cs *http2clientStream) writeRequestBody(req *Request) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    )
    
    type PerfEventAttr struct {
    	Type               uint32
    	Size               uint32
    	Config             uint64
    	Sample             uint64
    	Sample_type        uint64
    	Read_format        uint64
    	Bits               uint64
    	Wakeup             uint32
    	Bp_type            uint32
    	Ext1               uint64
    	Ext2               uint64
    	Branch_sample_type uint64
    	Sample_regs_user   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top