Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 191 for Collins (0.31 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	IXOFF                           = 0x0100
    	LOCK_SH                         = 0x1
    	LOCK_EX                         = 0x2
    	LOCK_NB                         = 0x4
    	LOCK_UN                         = 0x8
    	POLLIN                          = 0x0003
    	POLLOUT                         = 0x0004
    	POLLPRI                         = 0x0010
    	POLLERR                         = 0x0020
    	POLLHUP                         = 0x0040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    func (ssc *defaultStatefulSetControl) updateStatefulSetStatus(
    	ctx context.Context,
    	set *apps.StatefulSet,
    	status *apps.StatefulSetStatus) error {
    	// complete any in progress rolling update if necessary
    	completeRollingUpdate(set, status)
    
    	// if the status is not inconsistent do not perform an update
    	if !inconsistentStatus(set, status) {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` updated:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/graph_builder.go

    		// this marks the node as having been observed via an informer event
    		// 1. this depends on graphChanges only containing add/update events from the actual informer
    		// 2. this allows things tracking virtual nodes' existence to stop polling and rely on informer events
    		observedIdentity := identityFromEvent(event, accessor)
    		if observedIdentity != existingNode.identity {
    			// find dependents that don't match the identity we observed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.6.md

    ### DaemonSet
    * **[beta]** Introduce the rolling update feature for DaemonSet. See [Performing a Rolling Update on a DaemonSet](https://kubernetes.io/docs/tasks/manage-daemon/update-daemon-set/).
    
    ### Deployment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		ctxPassedToWait = ctx
    		return waitFn(ctx)
    	}, func(ctx context.Context) (bool, error) {
    		time.Sleep(10 * time.Millisecond)
    		return true, nil
    	})
    	// The polling goroutine should be closed after waitForWithContext returning.
    	if ctxPassedToWait.Err() != context.Canceled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		})
    	} else {
    		// Asynchronously attempt to initialize the authenticator. This enables
    		// self-hosted providers, providers that run on top of Kubernetes itself.
    		go func() {
    			// we ignore any errors from polling because they can only come from the context being canceled
    			_ = wait.PollUntilContextCancel(lifecycleCtx, 10*time.Second, true, func(_ context.Context) (done bool, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    			if err := runProbeCheckAndLog(ctx, 0); err == nil {
    				return false, nil
    			}
    
    			// TODO add integration test for quicker error poll on failure
    			// if we fail, block the outer polling and start a new quicker poll inline
    			// this limits the chance that our DEK expires during a transient failure
    			blockAndProbeFastUntilSuccess(ctx)
    
    			return false, nil
    		})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// K8s rolling update strategy
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	RollingMaxSurge *IntOrString `protobuf:"bytes,21,opt,name=rollingMaxSurge,proto3" json:"rollingMaxSurge,omitempty"`
    	// The number of pods that can be unavailable during a rolling update (see
    	// `strategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		t.Errorf("opens = %d; want >= 9", opens)
    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top