Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Indexes (0.26 sec)

  1. pkg/controller/job/job_controller_test.go

    					{
    						Type:    batch.JobFailed,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonFailedIndexes,
    						Message: "Job has failed indexes",
    					},
    				},
    			},
    		},
    		"job failed due to exceeding max failed indexes": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation_test.go

    						}},
    					},
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.successPolicy.rules[0].succeededCount: Invalid value: 4: must be less than or equal to 3 (the number of indexes in the specified succeededIndexes field)`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          padded_shape[i] += padding;
        }
    
        return padded_shape;
      }
    
      std::pair<int64_t, int64_t> GetDimSize(
          const ArrayRef<int64_t> shape, const ArrayRef<int64_t> indexes) const {
        return {shape[indexes[0]], shape[indexes[1]]};
      }
    
      bool IsTransposeConv(
          stablehlo::ConvolutionOp op,
          stablehlo::ConvDimensionNumbersAttr dimension_numbers) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     */
    
    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    // Indexes into the Header.Ident array.
    const (
    	EI_CLASS      = 4  /* Class of machine. */
    	EI_DATA       = 5  /* Data format. */
    	EI_VERSION    = 6  /* ELF format version. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	v.mustBeAssignable()
    	v.mustBe(String)
    	*(*string)(v.ptr) = x
    }
    
    // Slice returns v[i:j].
    // It panics if v's Kind is not [Array], [Slice] or [String], or if v is an unaddressable array,
    // or if the indexes are out of bounds.
    func (v Value) Slice(i, j int) Value {
    	var (
    		cap  int
    		typ  *sliceType
    		base unsafe.Pointer
    	)
    	switch kind := v.kind(); kind {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    }
    
    // m49Index gives indexes into fromM49 based on the three most significant bits
    // of a 10-bit UN.M49 code. To search an UN.M49 code in fromM49, search in
    //
    //	fromM49[m49Index[msb39(code)]:m49Index[msb3(code)+1]]
    //
    // for an entry where the first 7 bits match the 7 lsb of the UN.M49 code.
    // The region code is stored in the 9 lsb of the indexed value.
    // Size: 18 bytes, 9 elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                        rewriter.getI64Type()),
                  permutation));
          reverse_filter_in = filter_transposed;
        }
    
        // Lets hard-code the reverse indexes to be {0, 1} as the expectation is
        // that the kernel is always in HWOI format, with the above code.
        mhlo::ReverseOp filter = rewriter.create<mhlo::ReverseOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    				log.Fatalf("instruction missing from switch in asm9.go:buildop: %v", r)
    			}
    
    		case ADCBF: /* unary indexed: op (b+a); op (b) */
    			opset(ADCBI, r0)
    
    			opset(ADCBST, r0)
    			opset(ADCBT, r0)
    			opset(ADCBTST, r0)
    			opset(ADCBZ, r0)
    			opset(AICBI, r0)
    
    		case ASTDCCC: /* indexed store: op s,(b+a); op s,(b) */
    			opset(ASTWCCC, r0)
    			opset(ASTHCCC, r0)
    			opset(ASTBCCC, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    func TestValidateIndexers(t *testing.T) {
    	testcases := []struct {
    		name          string
    		indexers      *cache.Indexers
    		expectedError bool
    	}{
    		{
    			name:          "nil indexers",
    			indexers:      nil,
    			expectedError: false,
    		},
    		{
    			name: "normal indexers",
    			indexers: &cache.Indexers{
    				"f:spec.nodeName":            emptyIndexFunc,
    				"l:controller-revision-hash": emptyIndexFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    	podsLister       corelisters.PodLister
    	claimsLister     corelisters.PersistentVolumeClaimLister
    	setsLister       appslisters.StatefulSetLister
    	podsIndexer      cache.Indexer
    	claimsIndexer    cache.Indexer
    	setsIndexer      cache.Indexer
    	revisionsIndexer cache.Indexer
    	createPodTracker requestTracker
    	updatePodTracker requestTracker
    	deletePodTracker requestTracker
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top