Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for index (0.05 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. internal/s3select/select_test.go

    {"id":3,"title":"Second Record","desc":"another text","nested":[[2,3,4],[7,8.5,9]]}`,
    		},
    		{
    			name:       "index-wildcard-in",
    			query:      `SELECT * from s3object s WHERE (8.5) IN s.nested[1][*]`,
    			wantResult: `{"id":3,"title":"Second Record","desc":"another text","nested":[[2,3,4],[7,8.5,9]]}`,
    		},
    		{
    			name:       "index-wildcard-in",
    			query:      `SELECT * from s3object s WHERE (8.0+0.5) IN s.nested[1][*]`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  5. pkg/apis/networking/validation/validation_test.go

    								PathType: &exactPathType,
    								Backend:  defaultBackend,
    							}},
    						},
    					},
    				}}
    			},
    			expectedErrs: field.ErrorList{field.Invalid(field.NewPath("spec").Child("rules").Index(0).Child("http").Child("paths").Index(0).Child("path"), "foo", `must be an absolute path`)},
    		},
    	}
    
    	for name, testCase := range testCases {
    		t.Run(name, func(t *testing.T) {
    			newIngress := baseIngress.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/link/internal/ld/xcoff.go

    	Xfsize   uint32 // Size of function in bytes
    	Xendndx  uint32 // Symbol table index of next entry
    	Xpad     uint8  // Unused
    	Xauxtype uint8  // Type of auxiliary entry
    }
    
    // csect Auxiliary Entry.
    type XcoffAuxCSect64 struct {
    	Xscnlenlo uint32 // Lower 4 bytes of length or symbol table index
    	Xparmhash uint32 // Offset of parameter type-check string
    	Xsnhash   uint16 // .typchk section number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    		limitRangeList := &corev1.LimitRangeList{
    			ListMeta: metav1.ListMeta{
    				ResourceVersion: fmt.Sprintf("%d", len(limitRanges)),
    			},
    		}
    		for index, value := range limitRanges {
    			value.ResourceVersion = fmt.Sprintf("%d", index)
    			limitRangeList.Items = append(limitRangeList.Items, value)
    		}
    		return true, limitRangeList, nil
    	})
    	return mockClient
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top