Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 534 for Indexes (0.18 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    	records [][]byte
    	lookup  map[string]int64
    }
    
    // testHashes implements tlog.HashReader, reading from a slice.
    type testHashes []tlog.Hash
    
    func (h testHashes) ReadHashes(indexes []int64) ([]tlog.Hash, error) {
    	var list []tlog.Hash
    	for _, id := range indexes {
    		list = append(list, h[id])
    	}
    	return list, nil
    }
    
    func (s *TestServer) Signed(ctx context.Context) ([]byte, error) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/sync/export_test.go

    	PopHead() (any, bool)
    	PopTail() (any, bool)
    }
    
    func NewPoolDequeue(n int) PoolDequeue {
    	d := &poolDequeue{
    		vals: make([]eface, n),
    	}
    	// For testing purposes, set the head and tail indexes close
    	// to wrapping around.
    	d.headTail.Store(d.pack(1<<dequeueBits-500, 1<<dequeueBits-500))
    	return d
    }
    
    func (d *poolDequeue) PushHead(val any) bool {
    	return d.pushHead(val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultFileContentCacheFactory.java

            return cache;
        }
    
        /**
         * Maintains 2 levels of in-memory caching. The first, fast, level indexes on file path and contains the value that is very likely to reflect the current contents of the file. This first cache is invalidated whenever any task actions are run.
         *
         * The second level indexes on the hash of file content and contains the value that was calculated from a file with the given hash.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/controller/job/metrics/metrics.go

    		}, []string{"event"})
    
    	// JobFinishedIndexesTotal records the number of finished indexes.
    	JobFinishedIndexesTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "job_finished_indexes_total",
    			Help: `The number of finished indexes. Possible values for the
    			status label are: "succeeded", "failed". Possible values for the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/api/job/warnings.go

    		if completions > completionsSoftLimit && parallelism > parallelismSoftLimitForUnlimitedCompletions {
    			msg := "In Indexed Jobs with a number of completions higher than 10^5 and a parallelism higher than 10^4, Kubernetes might not be able to track completedIndexes when a big number of indexes fail"
    			warnings = append(warnings, fmt.Sprintf("%s: %s", path, msg))
    		}
    	}
    	var oldPodTemplate *core.PodTemplateSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 11:44:07 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/3-iter.md

    The new [iter] package provides the basic definitions for working with
    user-defined iterators.
    
    The [slices] package adds several functions that work with iterators:
    - [All](/pkg/slices#All) returns an iterator over slice indexes and values.
    - [Values](/pkg/slices#Values) returns an iterator over slice elements.
    - [Backward](/pkg/slices#Backward) returns an iterator that loops over
      a slice backward.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.h

      std::optional<CalibrationStatistics> GetStatistics() const override;
    
     private:
      // Expands the histogram so the lower_bound and upper_bound can fit in the
      // histogram. Returns the indexes associated to those values.
      std::pair<int32_t, int32_t> ExpandHistogramIfNeeded(float lower_bound,
                                                          float upper_bound);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    			for ; p < q; p += SUBBUCKETSIZE {
    				i = int((p - min) / SUBBUCKETSIZE)
    				if indexes[i] > idx {
    					indexes[i] = idx
    				}
    			}
    
    			i = int((q - 1 - min) / SUBBUCKETSIZE)
    			if indexes[i] > idx {
    				indexes[i] = idx
    			}
    			idx++
    		}
    
    		// fill in table
    		for i := int32(0); i < nbuckets; i++ {
    			base := indexes[i*SUBBUCKETS]
    			if base == NOIDX {
    				Errorf(nil, "hole in findfunctab")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/crypto/x509/cert_pool.go

    		lazyCerts:  make([]lazyCert, len(s.lazyCerts)),
    		haveSum:    make(map[sum224]bool, len(s.haveSum)),
    		systemPool: s.systemPool,
    	}
    	for k, v := range s.byName {
    		indexes := make([]int, len(v))
    		copy(indexes, v)
    		p.byName[k] = indexes
    	}
    	for k := range s.haveSum {
    		p.haveSum[k] = true
    	}
    	copy(p.lazyCerts, s.lazyCerts)
    	return p
    }
    
    // SystemCertPool returns a copy of the system cert pool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/environment/kube/flags.go

    		"", "Specifies the mapping for each cluster to the cluster hosting its control plane. The value is a "+
    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. This topology also determines where control planes should "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top