Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 560 for Indexes (0.16 sec)

  1. src/index/suffixarray/sais.go

    // index for each LMS-substring, in sorted order, at the right end of sa.
    // That is, it removes the L-type indexes that are present on entry,
    // and it inserts but then removes the interior S-type indexes too,
    // leaving the LMS-substring start indexes packed into sa[len(sa)-numLMS:].
    // (Only the LMS-substring start indexes are processed by the recursion.)
    func induceSubS_8_32(text []byte, sa, freq, bucket []int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"succeededIndexes": "succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job. The list of indexes must be within 0 to \".spec.completions-1\" and must not contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pkg/controller/job/indexed_job_utils.go

    	result := prevIntervals.withOrderedIndexes(sets.List(newSucceeded))
    	return prevIntervals, result
    }
    
    // calculateFailedIndexes returns the list of failed indexes in compressed
    // format (intervals). The list includes indexes already present in
    // .status.failedIndexes and indexes that failed since the last sync.
    func calculateFailedIndexes(logger klog.Logger, job *batch.Job, pods []*v1.Pod) *orderedIntervals {
    	var prevIntervals orderedIntervals
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    type SuccessPolicyRule struct {
    	// succeededIndexes specifies the set of indexes
    	// which need to be contained in the actual set of the succeeded indexes for the Job.
    	// The list of indexes must be within 0 to ".spec.completions-1" and
    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		size = 1 << uint(t.H)
    	}
    	start := t.N << uint(t.H)
    	indexes := make([]int64, size)
    	for i := 0; i < size; i++ {
    		indexes[i] = StoredHashIndex(t.H*t.L, start+int64(i))
    	}
    
    	hashes, err := r.ReadHashes(indexes)
    	if err != nil {
    		return nil, err
    	}
    	if len(hashes) != len(indexes) {
    		return nil, fmt.Errorf("tlog: ReadHashes(%d indexes) = %d hashes", len(indexes), len(hashes))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    type SuccessPolicyRule struct {
    	// succeededIndexes specifies the set of indexes
    	// which need to be contained in the actual set of the succeeded indexes for the Job.
    	// The list of indexes must be within 0 to ".spec.completions-1" and
    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// This scan is similar to the one in induceSubL_8_64 above.
    	// That one arranges to clear all but the leftmost L-type indexes.
    	// This scan leaves all the L-type indexes and the original S-type
    	// indexes, but it negates the positive leftmost L-type indexes
    	// (the ones that induceS_8_64 needs to process).
    
    	// expand_8_64 left out the implicit entry sa[-1] == len(text),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.proto

    message SuccessPolicyRule {
      // succeededIndexes specifies the set of indexes
      // which need to be contained in the actual set of the succeeded indexes for the Job.
      // The list of indexes must be within 0 to ".spec.completions-1" and
      // must not contain duplicates. At least one element is required.
      // The indexes are represented as intervals separated by commas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.h

      ~XlaLocalLaunchBase() override = default;
    
      void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override;
    
     protected:
      // Indexes of compile-time constant inputs
      const std::vector<int> constants_;
      // Indexes of resource inputs
      const std::vector<int> resources_;
    
      const NameAttrList function_;
      const XlaPlatformInfo platform_info_;
    
      bool has_ref_vars_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/vendor.go

    	}
    
    	pre114 := false
    	if !inWorkspaceMode() { // workspace mode was added after Go 1.14
    		if len(indexes) != 1 {
    			panic(fmt.Errorf("not in workspace mode but number of indexes is %v, not 1", len(indexes)))
    		}
    		index := indexes[0]
    		if gover.Compare(index.goVersion, "1.14") < 0 {
    			// Go versions before 1.14 did not include enough information in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top