Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 872 for incremented (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/crypto/aes/gcm_s390x.go

    		copy(s[:], data)
    		ghash(&g.hashKey, hash, s[:])
    	}
    }
    
    // cryptBlocksGCM encrypts src using AES in counter mode using the given
    // function code and key. The rightmost 32-bits of the counter are incremented
    // between each block as required by the GCM spec. The initial counter value
    // is given by cnt, which is updated with the value of the next counter value
    // to use.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Rate of XDS push operations, by type. This is incremented on a per-proxy basis.\n",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. pkg/apis/apps/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("templateGeneration"), newSpec.TemplateGeneration, "must be incremented upon template update"))
    	} else if newSpec.TemplateGeneration > oldSpec.TemplateGeneration && !templateUpdated {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("templateGeneration"), newSpec.TemplateGeneration, "must not be incremented without template update"))
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top