Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for i$ (0.27 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

          for (int i = 0; i < this.segments.length; ++i) {
            if (i == remainder) {
              maxSegmentWeight--;
            }
            this.segments[i] =
                createSegment(segmentSize, maxSegmentWeight, builder.getStatsCounterSupplier().get());
          }
        } else {
          for (int i = 0; i < this.segments.length; ++i) {
            this.segments[i] =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	sort.Slice(optab, optabLess)
    
    	for i := range optab {
    		// Use the legacy assembler function if none provided.
    		if optab[i].asmout == nil {
    			optab[i].asmout = asmout
    		}
    	}
    
    	for i := 0; i < len(optab); {
    		r := optab[i].as
    		r0 := r & obj.AMask
    		start := i
    		for i < len(optab) && optab[i].as == r {
    			i++
    		}
    		oprange[r0] = optab[start:i]
    
    		switch r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

          for (int i = 0; i < this.segments.length; ++i) {
            if (i == remainder) {
              maxSegmentWeight--;
            }
            this.segments[i] =
                createSegment(segmentSize, maxSegmentWeight, builder.getStatsCounterSupplier().get());
          }
        } else {
          for (int i = 0; i < this.segments.length; ++i) {
            this.segments[i] =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    // BuildNodeInfos build NodeInfo slice from a v1.Node slice
    func BuildNodeInfos(nodes []*v1.Node) []*framework.NodeInfo {
    	res := make([]*framework.NodeInfo, len(nodes))
    	for i := 0; i < len(nodes); i++ {
    		res[i] = framework.NewNodeInfo()
    		res[i].SetNode(nodes[i])
    	}
    	return res
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    					CompletionMode: &indexedCompletion,
    					Completions:    ptr.To[int32](501),
    				},
    			},
    			pods: func() []*v1.Pod {
    				pods := make([]*v1.Pod, 501)
    				for i := range pods {
    					pods[i] = buildPod().uid(strconv.Itoa(i)).index(strconv.Itoa(i)).phase(v1.PodSucceeded).trackingFinalizer().Pod
    				}
    				return pods
    			}(),
    			wantRmFinalizers: 500,
    			wantStatusUpdates: []batch.JobStatus{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      %0 = stablehlo.constant() {value = dense<3> : tensor<3x3x4x2xi8>} : () -> tensor<3x3x4x2x!quant.uniform<i8:f32:3, {2.000000e+2, 3.000000e+3}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    		tPod.Name = fmt.Sprintf("%s-%d", testPod.Name, idx)
    		for i := range tPod.Spec.Containers {
    			if tc.Resources != nil {
    				tPod.Spec.Containers[i].Resources = tc.Resources[i]
    			}
    			kubelet.statusManager.SetPodAllocation(tPod)
    			if tc.Resources != nil {
    				tPod.Status.ContainerStatuses[i].AllocatedResources = tc.Resources[i].Requests
    				testPodStatus.ContainerStatuses[i].Resources = &kubecontainer.ContainerResources{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    		// add underscore when next letter is lowercase
    		if (i != 0 || i == l-1) && ((i > 0 && rune(camel[i-1]) >= 'a') ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    		sort.SliceStable(endpoints, func(i, j int) bool {
    			if strings.Compare(endpoints[i].Locality.Region, endpoints[j].Locality.Region) < 0 {
    				return true
    			}
    			if strings.Compare(endpoints[i].Locality.Zone, endpoints[j].Locality.Zone) < 0 {
    				return true
    			}
    			return strings.Compare(endpoints[i].Locality.SubZone, endpoints[j].Locality.SubZone) < 0
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    	g.Expect(getTLSContext(t, clusters[1])).To(BeNil())
    
    	// Sanity check: make sure TLS is not accidentally added to other clusters.
    	for i := 2; i < len(clusters); i++ {
    		cluster := clusters[i]
    		g.Expect(getTLSContext(t, cluster)).To(BeNil())
    	}
    }
    
    func TestApplyLoadBalancer(t *testing.T) {
    	testcases := []struct {
    		name                               string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top