Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for timediv (0.17 sec)

  1. pilot/pkg/model/jwks_resolver_test.go

    			expectedFailure: true,
    		},
    	}
    	for _, c := range cases {
    		_, err := r.GetPublicKey(c.in[0], c.in[1], c.timeout)
    		if c.timeout < serverDelay && err == nil {
    			t.Errorf("GetPublicKey(\"\", %+v) fails: did not timed out as expected", c)
    		} else if c.timeout >= serverDelay && err != nil {
    			t.Errorf("GetPublicKey(\"\", %+v) fails: expected no error, got (%v)", c, err)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. cmd/bucket-targets.go

    	cancel()
    	if result.Error != nil {
    		return RemoteTargetConnectionErr{Bucket: tgt.TargetBucket, Err: result.Error, AccessKey: tgt.Credentials.AccessKey}
    	}
    	if !result.Online {
    		err := errors.New("Health check timed out after 3 seconds")
    		return RemoteTargetConnectionErr{Err: err}
    	}
    
    	sys.Lock()
    	defer sys.Unlock()
    
    	tgts := sys.targetsMap[bucket]
    	newtgts := make([]madmin.BucketTarget, len(tgts))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    	workloadInstancesIndex workloadinstances.Index
    
    	*networkManager
    
    	ambientIndex
    
    	// initialSyncTimedout is set to true after performing an initial processing timed out.
    	initialSyncTimedout *atomic.Bool
    	meshWatcher         mesh.Watcher
    
    	podsClient kclient.Client[*v1.Pod]
    
    	configCluster bool
    
    	networksHandlerRegistration *mesh.WatcherHandlerRegistration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. cmd/object-api-errors.go

    	return "size of the object less than what is expected"
    }
    
    // OperationTimedOut - a timeout occurred.
    type OperationTimedOut struct{}
    
    func (e OperationTimedOut) Error() string {
    	return "Operation timed out"
    }
    
    // Multipart related errors.
    
    // MalformedUploadID malformed upload id.
    type MalformedUploadID struct {
    	UploadID string
    }
    
    func (e MalformedUploadID) Error() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/etcd/etcd.go

    		_, err := c.getClusterStatus()
    		if err != nil {
    			switch err {
    			case context.DeadlineExceeded:
    				klog.V(1).Infof("[etcd] Attempt timed out")
    			default:
    				klog.V(1).Infof("[etcd] Attempt failed with error: %v\n", err)
    			}
    			continue
    		}
    		return true, nil
    	}
    	return false, errors.New("timeout waiting for etcd cluster to be available")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		if attachedVolumesNum == 1+extraPodsNum && detachedVolumesNum == nodesNum {
    			break
    		}
    		if i == 10 { // 10 seconds time out
    			t.Fatalf("Waiting for the volumes to attach/detach timed out: attached %d (expected %d); detached %d (%d)",
    				attachedVolumesNum, 1+extraPodsNum, detachedVolumesNum, nodesNum)
    		}
    	}
    
    	if testPlugin.GetErrorEncountered() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/resource_quota_controller.go

    			!cache.WaitForNamedCacheSync(
    				"resource quota",
    				waitForStopOrTimeout(ctx.Done(), period),
    				func() bool { return rq.quotaMonitor.IsSynced(ctx) },
    			) {
    			utilruntime.HandleError(fmt.Errorf("timed out waiting for quota monitor sync"))
    			return
    		}
    
    		logger.V(2).Info("synced quota controller")
    	}, period)
    }
    
    // printDiff returns a human-readable summary of what resources were added and removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top