Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 166 for seni (0.04 sec)

  1. docs/changelogs/changelog_3x.md

     *  New: `okhttp-sse` is an early preview of Server-Sent Events (SSE). This feature is incomplete
        and is only suitable for experimental use.
     *  New: MockWebServer now supports client authentication (mutual TLS). Call `requestClientAuth()`
        to permit an optional client certificate or `requireClientAuth()` to require one.
     *  New: `RecordedRequest.getHandshake()` returns the HTTPS handshake of a request sent to
        `MockWebServer`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Servers that do not implement bookmarks may ignore this flag and
      // bookmarks are sent at the server's discretion. Clients should not
      // assume bookmarks are returned at any specific interval, nor may they
      // assume the server will send any BOOKMARK event during a session.
      // If this is not a watch, this field is ignored.
      // +optional
      optional bool allowWatchBookmarks = 9;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Servers that do not implement bookmarks may ignore this flag and
      // bookmarks are sent at the server's discretion. Clients should not
      // assume bookmarks are returned at any specific interval, nor may they
      // assume the server will send any BOOKMARK event during a session.
      // If this is not a watch, this field is ignored.
      // +optional
      optional bool allowWatchBookmarks = 9;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// allowWatchBookmarks requests watch events with type "BOOKMARK".
    	// Servers that do not implement bookmarks may ignore this flag and
    	// bookmarks are sent at the server's discretion. Clients should not
    	// assume bookmarks are returned at any specific interval, nor may they
    	// assume the server will send any BOOKMARK event during a session.
    	// If this is not a watch, this field is ignored.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    					// Only waypoint proxy can handle L7 policies
    					opt.Check = CheckDeny
    				case dst.Config().HasWorkloadAddressedWaypointProxy() && !dst.Config().HasServiceAddressedWaypointProxy():
    					// send traffic to the workload instead of the service so it will redirect to the WL waypoint
    					opt.Address = dst.MustWorkloads().Addresses()[0]
    					opt.Port = echo.Port{ServicePort: ports.All().MustForName(opt.Port.Name).WorkloadPort}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    )
    
    // MatchPolicyType specifies the type of match policy
    type MatchPolicyType string
    
    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABC")
        assertThat(response.protocol).isEqualTo(protocol)
    
        // Confirm a single ping was sent and received, and its reply was sent and received.
        val logs = testLogHandler.takeAll()
        assertThat(countFrames(logs, "FINE: >> 0x00000000     8 PING          "))
          .isEqualTo(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	if r1 == socket_error {
    		if e1 != 0 {
    			err = errnoErr(e1)
    		} else {
    			err = EINVAL
    		}
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top