Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ditamap (0.12 sec)

  1. cmd/admin-handlers.go

    	}
    
    	disks := strings.Split(r.Form.Get("disks"), ",")
    	byDisk := strings.EqualFold(r.Form.Get("by-disk"), "true")
    	var diskMap map[string]struct{}
    	if len(disks) > 0 && disks[0] != "" {
    		diskMap = make(map[string]struct{}, len(disks))
    		for _, k := range disks {
    			if k != "" {
    				diskMap[k] = struct{}{}
    			}
    		}
    	}
    	jobID := r.Form.Get("by-jobID")
    
    	hosts := strings.Split(r.Form.Get("hosts"), ",")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		// may be larger than we expect.
    		return
    	}
    	_, _, line, _ := runtime.Caller(1)
    	t.Errorf("line %d: heapBits incorrect for %v\nhave %v\nwant %v", line, typ, heapBits, bits)
    }
    
    func verifyGCBitsSlice(t *testing.T, typ Type, cap int, bits []byte) {
    	// Creating a slice causes the runtime to repeat a bitmap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // in the same regArgs structure.
    //
    // regArgs must also be prepared with an appropriate ReturnIsPtr bitmap
    // indicating which registers will contain pointer-valued return values. The
    // purpose of this bitmap is to keep pointers visible to the GC between
    // returning from reflectcall and actually using them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    	// function type for creating signed requests - used to repeat
    	// requests with V2 and V4 signing.
    	type testSignedReqFn func(method, urlStr string, contentLength int64,
    		body io.ReadSeeker, accessKey, secretKey string, metamap map[string]string) (*http.Request,
    		error)
    
    	mkGetReq := func(oi ObjectInput, byteRange string, i int, mkSignedReq testSignedReqFn) {
    		object := oi.objectName
    		rec := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top