Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 133 for index (0.06 sec)

  1. pkg/apis/core/v1/defaults_test.go

    				// anyway.
    				marshaled, _ := json.Marshal(defaultedV.Interface())
    				defaults[visit.path] = string(marshaled)
    				toVisit = append(toVisit, testPath{path: visit.path + "[0]", value: visit.value.Index(0)})
    			} else if visit.value.Type().Elem().Kind() == reflect.Struct {
    				if strings.HasPrefix(visit.path, ".ObjectMeta.ManagedFields[") {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    func RunTestListResourceVersionMatch(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer) {
    	nextPod := func(index uint32) (string, *example.Pod) {
    		obj := &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: fmt.Sprintf("pod-%d", index),
    				Labels: map[string]string{
    					"even": strconv.FormatBool(index%2 == 0),
    				},
    			},
    		}
    		return computePodKey(obj), obj
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    // netfilter hooks (e.g., "postrouting", "input", etc.), as opposed to "regular" chains,
    // which are only run when a rule jumps to them. See
    // https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains.
    //
    // These are set up from setupNFTables() and then not directly referenced by
    // syncProxyRules().
    //
    // All of our base chains have names that are just "${type}-${hook}". e.g., "nat-prerouting".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/runtime/map.go

    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    // return the keys in walk order (bucket #, then overflow
    // chain order, then bucket index).  To maintain iteration
    // semantics, we never move keys within their bucket (if
    // we did, keys might be returned 0 or 2 times).  When
    // growing the table, iterators remain iterating through the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    	const legacyJSON = `{"version":"1.0.1","format":"xl","stat":{"size":2016,"modTime":"2021-10-11T23:40:34.914361617Z"},"erasure":{"algorithm":"klauspost/reedsolomon/vandermonde","data":2,"parity":2,"blockSize":10485760,"index":2,"distribution":[2,3,4,1],"checksum":[{"name":"part.1","algorithm":"highwayhash256S"}]},"minio":{"release":"RELEASE.2019-12-30T05-45-39Z"},"meta":{"X-Minio-Internal-Server-Side-Encryption-Iv":"kInsJB/0yxyz/40ZI+lmQYJfZacDYqZsGh2wEiv+N50=","X-Min...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				transformer := transformerFromOverrides(transformers, schema.ParseGroupResource(resource))
    				transformerName := string(
    					reflect.ValueOf(transformer).Elem().FieldByName("transformers").Index(0).FieldByName("Prefix").Bytes(),
    				)
    
    				if transformerName != expectedTransformerName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. src/time/time.go

    	}
    
    	return w
    }
    
    // fmtFrac formats the fraction of v/10**prec (e.g., ".12345") into the
    // tail of buf, omitting trailing zeros. It omits the decimal
    // point too when the fraction is 0. It returns the index where the
    // output bytes begin and the value v/10**prec.
    func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) {
    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    			// aux struct
    			s.AddUint32(ctxt.Arch, elfhash(x.vers))                  // hash
    			s.AddUint16(ctxt.Arch, 0)                                // flags
    			s.AddUint16(ctxt.Arch, uint16(x.num))                    // other - index we refer to this by
    			s.AddUint32(ctxt.Arch, uint32(dynstr.Addstring(x.vers))) // version string offset
    			if x.next != nil {
    				s.AddUint32(ctxt.Arch, 16) // offset from this aux to next
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	frame stkframe
    
    	// g is the G who's stack is being unwound. If the
    	// unwindJumpStack flag is set and the unwinder jumps stacks,
    	// this will be different from the initial G.
    	g guintptr
    
    	// cgoCtxt is the index into g.cgoCtxt of the next frame on the cgo stack.
    	// The cgo stack is unwound in tandem with the Go stack as we find marker frames.
    	cgoCtxt int
    
    	// calleeFuncID is the function ID of the caller of the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	unlock(&work.sweepWaiters.lock)
    
    	// Increment the scavenge generation now.
    	//
    	// This moment represents peak heap in use because we're
    	// about to start sweeping.
    	mheap_.pages.scav.index.nextGen()
    
    	// Release the CPU limiter.
    	gcCPULimiter.finishGCTransition(now)
    
    	// Finish the current heap profiling cycle and start a new
    	// heap profiling cycle. We do this before starting the world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top