Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for 1251 (0.04 sec)

  1. go.mod

    	k8s.io/controller-manager v0.0.0
    	k8s.io/cri-api v0.0.0
    	k8s.io/cri-client v0.0.0
    	k8s.io/csi-translation-lib v0.0.0
    	k8s.io/dynamic-resource-allocation v0.0.0
    	k8s.io/endpointslice v0.0.0
    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kms v0.0.0
    	k8s.io/kube-aggregator v0.0.0
    	k8s.io/kube-controller-manager v0.0.0
    	k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
    	k8s.io/kube-proxy v0.0.0
    	k8s.io/kube-scheduler v0.0.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_PSWG                 = 106 // PSWG
    	PT_PSWG0                = 106 // Bytes 0-3
    	PT_PSWG1                = 107 // Bytes 4-7
    	PT_PSWG2                = 108 // Bytes 8-11 (IA high word)
    	PT_PSWG3                = 109 // Bytes 12-15 (IA low word)
    )
    
    func Bpx4ptr(request int32, pid int32, addr unsafe.Pointer, data unsafe.Pointer, buffer unsafe.Pointer) (rv int32, rc int32, rn int32) {
    	var parms [8]unsafe.Pointer
    	parms[0] = unsafe.Pointer(&request)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      // Max size is halved due to indexing into double-sized alternatingKeysAndValues
      private static final int BYTE_MAX_SIZE = 1 << (Byte.SIZE - 1); // 2^7 = 128
      private static final int SHORT_MAX_SIZE = 1 << (Short.SIZE - 1); // 2^15 = 32_768
    
      private static final int BYTE_MASK = (1 << Byte.SIZE) - 1; // 2^8 - 1 = 255
      private static final int SHORT_MASK = (1 << Short.SIZE) - 1; // 2^16 - 1 = 65_535
    
      @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. internal/s3select/select.go

    	zstdType   CompressionType = "ZSTD"
    	lz4Type    CompressionType = "LZ4"
    	s2Type     CompressionType = "S2"
    	snappyType CompressionType = "SNAPPY"
    )
    
    const (
    	maxRecordSize = 1 << 20 // 1 MiB
    )
    
    var parquetSupport bool
    
    func init() {
    	parquetSupport = env.Get("MINIO_API_SELECT_PARQUET", config.EnableOff) == config.EnableOn
    }
    
    var bufPool = sync.Pool{
    	New: func() interface{} {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/internal/abi/type.go

    }
    
    func (t *FuncType) In(i int) *Type {
    	return t.InSlice()[i]
    }
    
    func (t *FuncType) NumIn() int {
    	return int(t.InCount)
    }
    
    func (t *FuncType) NumOut() int {
    	return int(t.OutCount & (1<<15 - 1))
    }
    
    func (t *FuncType) Out(i int) *Type {
    	return (t.OutSlice()[i])
    }
    
    func (t *FuncType) InSlice() []*Type {
    	uadd := unsafe.Sizeof(*t)
    	if t.TFlag&TFlagUncommon != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EFAULT             = Errno(118)
    	EFBIG              = Errno(119)
    	EINTR              = Errno(120)
    	EINVAL             = Errno(121)
    	EIO                = Errno(122)
    	EISDIR             = Errno(123)
    	EMFILE             = Errno(124)
    	EMLINK             = Errno(125)
    	ENAMETOOLONG       = Errno(126)
    	ENFILE             = Errno(127)
    	ENOATTR            = Errno(265)
    	ENODEV             = Errno(128)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    char* dangerousString1() {
    	int pageSize = 4096;
    	char *data = mmap(0, 2 * pageSize, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, 0, 0);
    	mprotect(data + pageSize,pageSize,PROT_NONE);
    	int start = pageSize - 123 - 1; // last 123 bytes of first page + 1 null byte
    	int i = start;
    	for (; i < pageSize; i++) {
    	data[i] = 'x';
    	}
    	data[pageSize -1 ] = 0;
    	return data+start;
    }
    
    char* dangerousString2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	/* operators > slice */
    
    	// NonSliceableOperand occurs when a slice operation is applied to a value
    	// whose type is not sliceable, or is unaddressable.
    	//
    	// Example:
    	//  var x = [...]int{1, 2, 3}[:1]
    	//
    	// Example:
    	//  var x = 1
    	//  var y = 1[:1]
    	NonSliceableOperand
    
    	// InvalidSliceExpr occurs when a three-index slice expression (a[x:y:z]) is
    	// applied to a string.
    	//
    	// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    The most prominent examples are the https://developer.android.com/studio/releases/gradle-plugin.html[Android plugin 3.1+] and the https://blog.gradle.org/kotlin-build-cache-use[Kotlin plugin 1.2.21+].
    For other third party plugins, check their documentation to find out whether they support the build cache.
    
    [[sec:task_output_caching_inputs]]
    === Declaring task inputs and outputs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/builtins0.go

    }
    
    func min2() {
    	_ = assert(min(0) == 0)
    	_ = assert(min(0, 1) == 0)
    	_ = assert(min(0, -10, 123456789) == -10)
    	_ = assert(min(-12345678901234567890, 0) == -12345678901234567890)
    
    	_ = assert(min(1, 2.3) == 1)
    	_ = assert(min(1, 2.3, 'a') == 1)
    
    	_ = assert(min("", "a") == "")
    	_ = assert(min("abcde", "xyz", "foo", "bar") == "abcde")
    
    	const (
    		_ int = min(1.0)
    		_ float32 = min(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top