Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 254 for 1025 (0.06 sec)

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

    	}
    	// TODO(neeilan): Remove 0 in call
    	sa, err = anyToSockaddr(0, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    func Ctermid() (tty string, err error) {
    	var termdev [1025]byte
    	runtime.EnterSyscall()
    	r0, err2, err1 := CallLeFuncWithPtrReturn(GetZosLibVec()+SYS___CTERMID_A<<4, uintptr(unsafe.Pointer(&termdev[0])))
    	runtime.ExitSyscall()
    	if r0 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/scorer_test.go

    							Requested: 60,
    							Capacity:  100,
    						},
    					},
    					5,
    				},
    				{
    					classResourceMap{
    						classHDD: &StorageResource{
    							Requested: 50,
    							Capacity:  100,
    						},
    						classSSD: &StorageResource{
    							Requested: 100,
    							Capacity:  100,
    						},
    					},
    					25,
    				},
    				{
    					classResourceMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  3. helm-releases/minio-1.0.5.tgz

    minio-1.0.5.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-08-25T00-41-18Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - storage - object-storage - S3 maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 1.0.5 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name to substitute for...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 25 19:53:57 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.25.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    - github.com/google/cel-go: [v0.12.5 → v0.12.6](https://github.com/google/cel-go/compare/v0.12.5...v0.12.6)
    - k8s.io/system-validators: v1.7.0 → v1.8.0
    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.0.33 → v0.0.35
    
    ### Removed
    _Nothing has changed._
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  5. helm-releases/minio-1.0.2.tgz

    minio-1.0.2.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-08-20T18-32-01Z description: High Performance, Kubernetes Native Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - storage - object-storage - S3 maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 1.0.2 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  6. test/fixedbugs/bug385_64.go

    	var x12 [10<<20]byte
    	var x13 [10<<20]byte
    	var x14 [10<<20]byte
    	var x15 [10<<20]byte
    	var x16 [10<<20]byte
    	var x17 [10<<20]byte
    	var x18 [10<<20]byte
    	var x19 [10<<20]byte
    	var x20 [10<<20]byte
    	var x21 [10<<20]byte
    	var x22 [10<<20]byte
    	var x23 [10<<20]byte
    	var x24 [10<<20]byte
    	var x25 [10<<20]byte
    	var x26 [10<<20]byte
    	var x27 [10<<20]byte
    	var x28 [10<<20]byte
    	var x29 [10<<20]byte
    	var x30 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	response, err := s.client.Do(req)
    	c.Assert(err, nil)
    	// assert the http response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	invalidBucket := "Invalid\\Bucket"
    	tooByte := bytes.Repeat([]byte("a"), 1025)
    	tooBigPrefix := string(tooByte)
    	validEvents := []string{"s3:ObjectCreated:*", "s3:ObjectRemoved:*"}
    	invalidEvents := []string{"invalidEvent"}
    
    	req, err = newTestSignedRequest(http.MethodGet,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. test/cmplx.go

    	_ = complex() // ERROR "not enough arguments"
    
    	c128 = complex(f32, f32) // ERROR "cannot use"
    	c64 = complex(f64, f64)  // ERROR "cannot use"
    
    	c64 = complex(1.0, 2.0) // ok, constant is untyped
    	c128 = complex(1.0, 2.0)
    	C64 = complex(1.0, 2.0)
    	C128 = complex(1.0, 2.0)
    
    	C64 = complex(f32, f32)  // ERROR "cannot use"
    	C128 = complex(f64, f64) // ERROR "cannot use"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 21:00:20 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. cmd/batch-job-common-types_test.go

    		{
    			// 1Mib < 2Mib < 10MiB -> in range
    			objSize: 2 << 20,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: true,
    		},
    		{
    			// 2KiB < 1 MiB -> out of range from left
    			objSize: 2 << 10,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: false,
    		},
    		{
    			// 11MiB > 10 MiB -> out of range from right
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 08 23:22:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/internal/src/xpos_test.go

    	var tab PosTable
    	for _, want := range []Pos{
    		NoPos,
    		MakePos(nil, 0, 0), // same table entry as NoPos
    		MakePos(b1, 0, 0),
    		MakePos(nil, 10, 20), // same table entry as NoPos
    		MakePos(b2, 10, 20),
    		MakePos(b3, 10, 20),
    		MakePos(b3, 123, 0), // same table entry as MakePos(b3, 10, 20)
    	} {
    		xpos := tab.XPos(want)
    		got := tab.Pos(xpos)
    		if got != want {
    			t.Errorf("got %v; want %v", got, want)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top