Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for incremented (0.27 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    	// represented by the job's .status.failed field, is incremented.
    	PodFailurePolicyActionCount PodFailurePolicyAction = "Count"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/runtime/map_test.go

    	delete(m, key1)
    	m[key2]++
    	if n2 := m[key2]; n2 != 1 {
    		t.Errorf("incremented 0 to %d", n2)
    	}
    }
    
    func TestIncrementAfterDeleteValueInt32(t *testing.T) {
    	const key1 = 12
    	const key2 = 13
    
    	m := make(map[int]int32)
    	m[key1] = 99
    	delete(m, key1)
    	m[key2]++
    	if n2 := m[key2]; n2 != 1 {
    		t.Errorf("incremented 0 to %d", n2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/sema.go

    //
    // It must be kept in sync with the sync package.
    type notifyList struct {
    	// wait is the ticket number of the next waiter. It is atomically
    	// incremented outside the lock.
    	wait atomic.Uint32
    
    	// notify is the ticket number of the next waiter to be notified. It can
    	// be read outside the lock, but is only written to with lock held.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    )
    
    // A file is a counter file.
    type file struct {
    	// Linked list of all known counters.
    	// (Linked list insertion is easy to make lock-free,
    	// and we don't want the initial counters incremented
    	// by a program to cause significant contention.)
    	counters atomic.Pointer[Counter] // head of list
    	end      Counter                 // list ends at &end instead of nil
    
    	mu         sync.Mutex
    	namePrefix string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/runtime/netpoll.go

    	// PollDesc objects must be type-stable,
    	// because we can get ready notification from epoll/kqueue
    	// after the descriptor is closed/reused.
    	// Stale notifications are detected using seq variable,
    	// seq is incremented when deadlines are changed or descriptor is reused.
    }
    
    var (
    	netpollInitLock mutex
    	netpollInited   atomic.Uint32
    
    	pollcache      pollCache
    	netpollWaiters atomic.Uint32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top