Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,195 for Gent (0.03 sec)

  1. pkg/kubelet/prober/results/results_manager.go

    	// Get returns the cached result for the container with the given ID.
    	Get(kubecontainer.ContainerID) (Result, bool)
    	// Set sets the cached result for the container with the given ID.
    	// The pod is only included to be sent with the update.
    	Set(kubecontainer.ContainerID, Result, *v1.Pod)
    	// Remove clears the cached result for the container with the given ID.
    	Remove(kubecontainer.ContainerID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 13 07:12:54 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *    either peer may not have been transmitted to the other.
     *
     * Note that the state progression is independent for each peer. Arriving at a gracefully-closed
     * state indicates that a peer has sent all of its outgoing messages and received all of its
     * incoming messages. But it does not guarantee that the other peer will successfully receive all of
     * its incoming messages.
     */
    interface WebSocket {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.proto

      string message = 6;
      // Method for the request. Valid only for HTTP
      string method = 9;
      // If true, requests will be sent using h2c prior knowledge
      bool http2 = 7;
      // If true, requests will be sent using http3
      bool http3 = 15;
      // If true, requests will not be sent until magic string is received
      bool serverFirst = 8;
      // If true, 301 redirects will be followed
      bool followRedirects = 14;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                descriptor.className == "org.gradle.test.TestWork"
                failures.size() == 1
                with (failures[0]) {
                    message == "something went horribly wrong"
                    description.startsWith("java.lang.IllegalStateException: something went horribly wrong")
                }
            }
        }
    
        private ProgressEvents runBuild(String task, Set<OperationType> operationTypes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. test/typeparam/issue47713.out

    Sent asdf...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 24 18:30:13 UTC 2021
    - 10 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-deactivateGlobalSubstitution/tests/resolve.out

    FAILURE: Build failed with an exception.
    
    * What went wrong:
    > Could not resolve all files for configuration ':publishedRuntimeClasspath'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 182 bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/chans.go

    // A sender is used to send values to a Receiver.
    type Sender[T any] struct {
    	values chan<- T
    	done <-chan bool
    }
    
    // Send sends a value to the receiver. It returns whether any more
    // values may be sent; if it returns false the value was not sent.
    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    	}
    }
    
    // Close tells the receiver that no more values will arrive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// It's not guaranteed Audit-Id http header is sent for all requests. When kube-apiserver didn't
    	// audit the events according to the audit policy, no Audit-ID is returned. Also, for request to
    	// pods/exec, pods/attach, pods/proxy, kube-apiserver works like a proxy and redirect the request
    	// to kubelet node, users will only get http headers sent from kubelet node, so no Audit-ID is
    	// sent when users run command like "kubectl exec" or "kubectl attach".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. test/typeparam/chansimp.dir/a.go

    // A Sender is used to send values to a Receiver.
    type Sender[Elem any] struct {
    	values chan<- Elem
    	done   <-chan struct{}
    }
    
    // Send sends a value to the receiver. It reports whether the value was sent.
    // The value will not be sent if the context is closed or the receiver
    // is freed.
    func (s *Sender[Elem]) Send(ctx context.Context, v Elem) bool {
    	select {
    	case <-ctx.Done():
    		return false
    	case s.values <- v:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. releasenotes/notes/auto-mtls-headless.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 24319
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 190 bytes
    - Viewed (0)
Back to top