Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 832 for newer (0.08 sec)

  1. pkg/kubelet/volumemanager/volume_manager.go

    	// minutes to complete, we set the timeout to 2 minutes because kubelet
    	// will retry in the next sync iteration. This frees the associated
    	// goroutine of the pod to process newer updates if needed (e.g., a delete
    	// request to the pod).
    	// Value is slightly offset from 2 minutes to make timeouts due to this
    	// constant recognizable.
    	podAttachAndMountTimeout = 2*time.Minute + 3*time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    		{"go1.98", "go1.99", "package requires newer Go version go1.98"}, // (two
    		{"go1.98", "go1.99", "file requires newer Go version go1.99"},    // errors)
    	} {
    		var src string
    		if test.fileVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	const currentVersion = iexportVersionCurrent
    	version := int64(-1)
    	defer func() {
    		if e := recover(); e != nil {
    			if version > currentVersion {
    				err = fmt.Errorf("cannot import %q (%v), export data is newer version - update tool", path, e)
    			} else {
    				err = fmt.Errorf("cannot import %q (%v), possibly version skew - reinstall package", path, e)
    			}
    		}
    	}()
    
    	r := &intReader{dataReader, path}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    func (c *SiteReplicationSys) PeerBucketVersioningHandler(ctx context.Context, bucket string, versioning *string, updatedAt time.Time) error {
    	if versioning != nil {
    		// skip overwrite if local update is newer than peer update.
    		if !updatedAt.IsZero() {
    			if _, updateTm, err := globalBucketMetadataSys.GetVersioningConfig(bucket); err == nil && updateTm.After(updatedAt) {
    				return nil
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    //
    // Newer API response with policy timestamps is returned with query parameter
    // `v=2` like:
    //
    // GET /minio/admin/v3/info-canned-policy?name={policyName}&v=2
    //
    // The newer API will eventually become the default (and only) one. The older
    // response is to return only the policy JSON. The newer response returns
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    			ResourceNames: res,
    			Wildcard:      wildcard,
    		}
    		return true
    	}
    
    	// If there is mismatch in the nonce, that is a case of expired/stale nonce.
    	// A nonce becomes stale following a newer nonce being sent to Envoy.
    	// TODO: due to concurrent unsubscribe, this probably doesn't make sense. Do we need any logic here?
    	if request.ResponseNonce != "" && request.ResponseNonce != previousInfo.NonceSent {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. Makefile.core.mk

    # Our build tools, post jammy, breaks old versions of docker.
    # These old versions are surprisingly common, so build in a check here
    define warning
    Docker version is too old, please upgrade to a newer version.
    endef
    ifneq ($(findstring google,$(HOSTNAME)),)
    warning+=Googlers: go/installdocker\#the-version-of-docker-thats-installed-is-old-eg-1126
    endif
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

        echo "export ETCD_VERSION=3.0.17"
        echo
        echo "Alternatively, if you choose to allow an etcd upgrade that doesn't support downgrade,"
        echo "you might still be able to downgrade Kubernetes by pinning to the newer etcd version."
        echo "In all cases, it is strongly recommended to have an etcd backup before upgrading."
        echo
        if [ -t 0 ] && [ -t 1 ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute_test.go

    					},
    				},
    			},
    			allowExperimental: true,
    			errExpected:       false,
    		},
    		{
    			name: "upgrade to an RC version should be supported. There may also be an even newer unstable version.",
    			vg: &fakeVersionGetter{
    				clusterVersion:   v1X5.String(),
    				componentVersion: v1X5.String(),
    				kubeletVersion:   v1X5.String(),
    				kubeadmVersion:   v1X5.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    	for _, older := range protos {
    		for _, newer := range protos {
    			t.Run(fmt.Sprintf("%v then %v", older, newer), func(t *testing.T) {
    				run(t, []*model.Service{
    					buildService("test1.com", wildcardIPv4, older, tnow.Add(-1*time.Second)),
    					buildService("test2.com", wildcardIPv4, newer, tnow),
    				})
    			})
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top