Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for index (0.09 sec)

  1. cmd/xl-storage-format-v2.go

    	ErasureBlockSize   int64             `json:"EcBSize" msg:"EcBSize"`                          // Erasure block size
    	ErasureIndex       int               `json:"EcIndex" msg:"EcIndex"`                          // Erasure disk index
    	ErasureDist        []uint8           `json:"EcDist" msg:"EcDist"`                            // Erasure distribution
    	BitrotChecksumAlgo ChecksumAlgo      `json:"CSumAlgo" msg:"CSumAlgo"`                        // Bitrot checksum algo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	return int8(sc >> 1)
    }
    
    //go:nosplit
    func (sc spanClass) noscan() bool {
    	return sc&1 != 0
    }
    
    // arenaIndex returns the index into mheap_.arenas of the arena
    // containing metadata for p. This index combines of an index into the
    // L1 map and an index into the L2 map and should be used as
    // mheap_.arenas[ai.l1()][ai.l2()].
    //
    // If p is outside the range of valid heap addresses, either l1() or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		return false
    	}
    	if hasBackoffLimitPerIndex(jobCtx.job) {
    		if index := getCompletionIndex(pod.Annotations); index != unknownCompletionIndex {
    			if p, ok := jobCtx.podsWithDelayedDeletionPerIndex[index]; ok && p.UID == pod.UID {
    				logger.V(3).Info("Delaying pod finalizer removal to await for pod recreation within the index", "pod", klog.KObj(pod))
    				return false
    			}
    		}
    	}
    	return true
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	t.Cleanup(func() {
    		if t.Failed() {
    			idx := idx.(*index)
    			krt.Dump(idx.authorizationPolicies)
    			krt.Dump(idx.workloads.Collection)
    			krt.Dump(idx.services.Collection)
    			krt.Dump(idx.waypoints.Collection)
    		}
    	})
    	a := &ambientTestServer{
    		t:         t,
    		clusterID: clusterID,
    		network:   networkID,
    		index:     idx.(*index),
    		fx:        up,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		// Assert
    		close(fakeRecorder.Events)
    		index := 0
    		for event := range fakeRecorder.Events {
    			if len(test.expectedEvents) < index {
    				t.Errorf("Test %q: unexpected event received: %s", test.name, event)
    			} else {
    				expectedEvent := test.expectedEvents[index]
    				if expectedEvent != event {
    					t.Errorf("Test %q: event %d: expected %q, got %q", test.name, index, expectedEvent, event)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		if err != nil {
    			log.Fatal(err)
    		}
    		buf := make([]byte, 100)
    		n, _ := f.Read(buf)
    		s := string(buf[:n])
    		if i := strings.Index(s, "\n"); i >= 0 {
    			s = s[:i]
    		}
    		i := strings.Index(s, " start")
    		if i < 0 {
    			log.Fatalf("time log %s does not begin with start line", os.Getenv("GOBUILDTIMELOGFILE"))
    		}
    		t, err := time.Parse(time.UnixDate, s[:i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						},
    						"otherField": "hello world",
    					}},
    				// (This test shows an array cannpt be correlated by index with its old value)
    				expectError{applyPatchOperation{
    					"add new, valid fields to elements of the array, failing to ratchet unchanged old fields within the array elements by correlating by index due to atomic list",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": []interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	// that resolved the module to that version (the “reason”).
    	resolvedVersion map[string]versionReason
    
    	buildList        []module.Version
    	buildListVersion map[string]string // index of buildList (module path → version)
    
    	initialVersion map[string]string // index of the initial build list at the start of 'go get'
    
    	missing []pathSet // candidates for missing transitive dependencies
    
    	work *par.Queue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    				ExportTo:  sets.New(visibility.Instance("namespace")),
    			},
    		},
    	}
    
    	for _, svc := range services {
    		if index.shardsBySvc[string(svc.Hostname)] == nil {
    			index.shardsBySvc[string(svc.Hostname)] = map[string]*EndpointShards{}
    		}
    		index.shardsBySvc[string(svc.Hostname)][svc.Attributes.Namespace] = &EndpointShards{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    			if tt.oldestWins {
    				test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    			}
    			index := computeWildcardHostVirtualServiceIndex(tt.virtualServices, tt.services)
    			if !reflect.DeepEqual(tt.expectedIndex, index) {
    				t.Errorf("Expected index %v, got %v", tt.expectedIndex, index)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top