Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for spent (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func WSASendto(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to Sockaddr, overlapped *Overlapped, croutine *byte) (err error) {
    	var rsa unsafe.Pointer
    	var l int32
    	if to != nil {
    		rsa, l, err = to.sockaddr()
    		if err != nil {
    			return err
    		}
    	}
    	return WSASendTo(s, bufs, bufcnt, sent, flags, (*RawSockaddrAny)(unsafe.Pointer(rsa)), l, overlapped, croutine)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    "sendInitialEvents":    "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// In that case, the watch stream will begin with synthetic events to
    	// produce the current state of objects in the collection. Once all such
    	// events have been sent, a synthetic "Bookmark" event  will be sent.
    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      }
    
      /**
       * Webservers may set the initial window size to zero, which is a special case because it means
       * that we have to flush headers immediately before any request body can be sent.
       * https://github.com/square/okhttp/issues/2543
       */
      @Test fun peerSetsZeroFlowControl() {
        peer.setClient(true)
    
        // Write the mocking script.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // In that case, the watch stream will begin with synthetic events to
      // produce the current state of objects in the collection. Once all such
      // events have been sent, a synthetic "Bookmark" event  will be sent.
      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // In that case, the watch stream will begin with synthetic events to
      // produce the current state of objects in the collection. Once all such
      // events have been sent, a synthetic "Bookmark" event  will be sent.
      // The bookmark will report the ResourceVersion (RV) corresponding to the
      // set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    // need a sample HTTP request to be sent as argument so that the relevant handler is called, the handler registration is expected
    // to be done since its called from within the API handler tests, the reference to the registered HTTP handler has to be sent
    // as an argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		server, requestGetter := newHTTP2ServerWithClient(handler, time.Minute)
    		defer server.Close()
    
    		// This test involves two requests sent to the same priority level, which has 1 queue and
    		// a concurrency limit of 1.  The handler chain include the timeout filter.
    		// Each request is sent from a separate goroutine, with a client-side timeout of 1m, on
    		// the other hand, the server enforces a timeout of 5s (via the timeout filter).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    		return
    	}
    
    	// Requests are always added to queue with resyncPeriod delay.  If there's already
    	// request for the HPA in the queue then a new request is always dropped. Requests spend resync
    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top