Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 578 for incremented (0.29 sec)

  1. src/html/escape.go

    	// 0x00->'\uFFFD' is handled programmatically.
    	// 0x0D->'\u000D' is a no-op.
    }
    
    // unescapeEntity reads an entity like "<" from b[src:] and writes the
    // corresponding "<" to b[dst:], returning the incremented dst and src cursors.
    // Precondition: b[src] == '&' && dst <= src.
    func unescapeEntity(b []byte, dst, src int) (dst1, src1 int) {
    	const attribute = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    class Subgraph {
      // Set vector preserves insertion order, must insert Ops in topological order.
     public:
      const llvm::SetVector<Operation*> partition_ops_;
    
      // Subgraphs are given a unique incremented integer id based on when
      // they were encountered in this pass.
      const int subgraph_id_;
    
      const llvm::StringRef dialect_namespace_;
    
      Subgraph(const llvm::SetVector<Operation*> partition_ops, int num_subgraphs)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. pkg/controller/deployment/rollback.go

    			logger.V(4).Info("Found replica set with desired revision", "replicaSet", klog.KObj(rs), "revision", v)
    			// rollback by copying podTemplate.Spec from the replica set
    			// revision number will be incremented during the next getAllReplicaSetsAndSyncRevision call
    			// no-op if the spec matches current deployment's podTemplate.Spec
    			performedRollback, err := dc.rollbackToTemplate(ctx, d, rs)
    			if performedRollback && err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    func ZeroPseudoVersion(major string) string {
    	return PseudoVersion(major, "", time.Time{}, "000000000000")
    }
    
    // incDecimal returns the decimal string incremented by 1.
    func incDecimal(decimal string) string {
    	// Scan right to left turning 9s to 0s until you find a digit to increment.
    	digits := []byte(decimal)
    	i := len(digits) - 1
    	for ; i >= 0 && digits[i] == '9'; i-- {
    		digits[i] = '0'
    	}
    	if i >= 0 {
    		digits[i]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. internal/s3select/sql/aggregation.go

    	isFirstRow := false
    	if !e.aggregate.seen {
    		e.aggregate.seen = true
    		isFirstRow = true
    	}
    
    	switch funcName {
    	case aggFnCount:
    		// For all non-null values, the count is incremented.
    		e.aggregate.runningCount++
    
    	case aggFnAvg, aggFnSum:
    		e.aggregate.runningCount++
    		// Convert to float.
    		f, ok := argVal.ToFloat()
    		if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // only in cases where the window of events in the underlying
    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    // to be popped off, watchCache::startIndex is incremented. In
    // this case, an interval tracking that popped event is valid
    // only if it has already been copied to its internal buffer.
    // However, for efficiency we perform that lazily and we mark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // will be directory/base_name.extension or
      // directory/base_name_<number>.extension if directory/base_name.extension
      // already exists. The number will be incremented until a pathname is found
      // that does not already exist.
      // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
      // There could be a race condition if two or more processes are calling this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection.go

    	// Criteria to determine leader priority.
    	revision       string
    	perRevision    bool
    	remote         bool
    	defaultWatcher revisions.DefaultWatcher
    
    	// Records which "cycle" the election is on. This is incremented each time an election is won and then lost
    	// This is mostly just for testing
    	cycle      *atomic.Int32
    	electionID string
    
    	// Store as field for testing
    	le *k8sleaderelection.LeaderElector
    	mu sync.RWMutex
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // will be directory/base_name.extension or
      // directory/base_name_<number>.extension if directory/base_name.extension
      // already exists. The number will be incremented until a pathname is found
      // that does not already exist.
      // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
      // There could be a race condition if two or more processes are calling this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/work/Incremental.java

     * <p>
     *     Inputs annotated with {@link Incremental} can be queried for changes via {@link InputChanges#getFileChanges(org.gradle.api.file.FileCollection)} or {@link org.gradle.work.InputChanges#getFileChanges(org.gradle.api.provider.Provider)}.
     * </p>
     *
     * @since 5.4
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    @Documented
    public @interface Incremental {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 06 13:15:59 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top