Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for timeEnd (0.94 sec)

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

    	{1124, "EDC8124I", "Socket not connected."},
    	{1125, "EDC8125I", "Can't send after socket shutdown."},
    	{1126, "EDC8126I", "Too many references; can't splice."},
    	{1127, "EDC8127I", "Connection timed out."},
    	{1128, "EDC8128I", "Connection refused."},
    	{1129, "EDC8129I", "Host is not available."},
    	{1130, "EDC8130I", "Host cannot be reached."},
    	{1131, "EDC8131I", "Too many processes."},
    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. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	e.addWork(waiter)
    
    	// wait for completion or timeout
    	select {
    	case <-waiter.finished:
    	case <-time.After(10 * time.Second):
    		return apierrors.NewInternalError(fmt.Errorf("resource quota evaluation timed out"))
    	}
    
    	return waiter.result
    }
    
    func (e *quotaEvaluator) addWork(a *admissionWaiter) {
    	e.workLock.Lock()
    	defer e.workLock.Unlock()
    
    	ns := a.attributes.GetNamespace()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pkg/wasm/cache_test.go

    			},
    			wantFileName:    ociWasmFile,
    			wantVisitServer: true,
    		},
    		{
    			name:                 "fetch oci timed out",
    			initialCachedModules: map[moduleKey]cacheEntry{},
    			fetchURL:             ociURLWithTag,
    			getOptions: GetOptions{
    				ResourceName:    "namespace.resource",
    				ResourceVersion: "0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	return c.conn.RemoteAddr()
    }
    
    // SetDeadline sets the read and write deadlines associated with the connection.
    // A zero value for t means [Conn.Read] and [Conn.Write] will not time out.
    // After a Write has timed out, the TLS state is corrupt and all future writes will return the same error.
    func (c *Conn) SetDeadline(t time.Time) error {
    	return c.conn.SetDeadline(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	133: "transport endpoint is already connected",
    	134: "transport endpoint is not connected",
    	143: "cannot send after socket shutdown",
    	144: "too many references: cannot splice",
    	145: "connection timed out",
    	146: "connection refused",
    	147: "host is down",
    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    	151: "stale NFS file handle",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. cluster/log-dump/log-dump.sh

      # if we aren't already done.
      start="$(date +%s)"
      while true; do
        now="$(date +%s)"
        if [[ $((now - start)) -gt ${logexport_sleep_seconds} ]]; then
          echo 'Waiting for all nodes to be logexported timed out.'
          break
        fi
        if find_non_logexported_nodes; then
          if [[ -z "${NON_LOGEXPORTED_NODES:-}" ]]; then
            break
          fi
        fi
        sleep 15
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

     *         // requests.
     *         try {
     *           manager.stopAsync().awaitStopped(5, TimeUnit.SECONDS);
     *         } catch (TimeoutException timeout) {
     *           // stopping timed out
     *         }
     *       }
     *     });
     *     manager.startAsync();  // start all the services asynchronously
     *   }
     * }
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    		response, err := p.tapRequest(&dr, 5*time.Second)
    		if err != nil {
    			w.WriteHeader(http.StatusServiceUnavailable)
    			fmt.Fprintf(w, "%v\n", err)
    			return
    		}
    
    		if response == nil {
    			log.Infof("timed out waiting for Istiod to respond to %q", typeURL)
    			w.WriteHeader(http.StatusGatewayTimeout)
    			return
    		}
    
    		// Try to unmarshal Istiod's response using protojson (needed for Envoy protobufs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ServiceManager.java

     *         // requests.
     *         try {
     *           manager.stopAsync().awaitStopped(5, TimeUnit.SECONDS);
     *         } catch (TimeoutException timeout) {
     *           // stopping timed out
     *         }
     *       }
     *     });
     *     manager.startAsync();  // start all the services asynchronously
     *   }
     * }
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	} else {
    		if err != nil {
    			t.Fatalf("Failed to list objects: %v", err)
    		}
    	}
    
    	select {
    	case <-watchClosed:
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("timed out waiting for watch to close")
    	}
    }
    
    func TestCacherDontMissEventsOnReinitialization(t *testing.T) {
    	makePod := func(i int) *example.Pod {
    		return &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top