Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,072 for incremented (0.26 sec)

  1. 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)
  2. staging/src/k8s.io/api/batch/v1/generated.proto

      // - Ignore: indicates that the counter towards the .backoffLimit is not
      //   incremented and a replacement pod is created.
      // - Count: indicates that the pod is handled in the default way - the
      //   counter towards the .backoffLimit is incremented.
      // Additional values are considered to be added in the future. Clients should
      // react to an unknown action by skipping the rule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"onExitCodes":     "Represents the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/types_test.go

    							},
    						},
    						NodeName: nodeName,
    					},
    				},
    			},
    		},
    	}
    
    	gen := generation
    	ni := NewNodeInfo(pods...)
    	if ni.Generation <= gen {
    		t.Errorf("Generation is not incremented. previous: %v, current: %v", gen, ni.Generation)
    	}
    	expected.Generation = ni.Generation
    	if !reflect.DeepEqual(expected, ni) {
    		t.Errorf("expected: %#v, got: %#v", expected, ni)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/nodelifecycle/scheduler/rate_limited_queue_test.go

    	}
    }
    
    func TestTryOrdering(t *testing.T) {
    	defer func() { now = time.Now }()
    	current := time.Unix(0, 0)
    	delay := 0
    	// the current time is incremented by 1ms every time now is invoked
    	now = func() time.Time {
    		if delay > 0 {
    			delay--
    		} else {
    			current = current.Add(time.Millisecond)
    		}
    		t.Logf("time %d", current.UnixNano())
    		return current
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 17:40:33 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top