Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,587 for semver (0.16 sec)

  1. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            given:
            server.expect(server.get("a"))
            server.expect(server.get("b").sendFile(file))
            server.expect(server.get("c").send("this is the content"))
            server.start()
    
            when:
            server.uri("a").toURL().text == ""
            server.uri("b").toURL().text == "123"
            server.uri("c").toURL().text == "this is the content"
            server.stop()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            publishedMavenModule()
    
            when:
            moduleAvailableViaHttp()
    
            then:
            run 'retrieve'
    
            when:
            server.resetExpectations()
            int port = server.port
            server.stop()
            then:
            fails 'retrieve'
    
            and:
            failure.assertHasDescription("Execution failed for task ':retrieve'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/main_test.go

    	appsNamespace := customNs.Get()
    
    	// Server certificate has "server.file-mounted.svc" in SANs; Same is expected in DestinationRule.subjectAltNames for the test Echo server
    	// This cert is going to be used as a server and "client" certificate on the "Echo Server"'s side
    	err := CreateCustomSecret(ctx, ServerSecretName, appsNamespace, ServerCertsPath)
    	if err != nil {
    		return fmt.Errorf("Unable to create server secret. %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_scanner_bucket_scans_started`       | `counter` | Total number of bucket scans started since server start    | `server` |
    | `minio_scanner_directories_scanned`        | `counter` | Total number of directories scanned since server start     | `server` |
    | `minio_scanner_last_activity_seconds`      | `gauge`   | Time elapsed (in seconds) since last scan activity         | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	ipFamily := v1.IPv4Protocol
    
    	if len(svc.Spec.IPFamilies) > 0 {
    		// controller is connected to an api-server that correctly sets IPFamilies
    		ipFamily = svc.Spec.IPFamilies[0] // this works for headful and headless
    	} else {
    		// controller is connected to an api server that does not correctly
    		// set IPFamilies (e.g. old api-server during an upgrade)
    		// TODO (khenidak): remove by when the possibility of upgrading
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. pkg/config/gateway/gateway_test.go

    					tc.server, actual, tc.expected)
    			}
    		})
    	}
    }
    
    func TestIsHTTPServer(t *testing.T) {
    	cases := []struct {
    		name     string
    		server   *v1alpha3.Server
    		expected bool
    	}{
    		{
    			name: "HTTP as transport protocol",
    			server: &v1alpha3.Server{
    				Port: &v1alpha3.Port{
    					Number:   80,
    					Protocol: string(protocol.HTTP),
    					Name:     "http",
    				},
    			},
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 26 05:53:25 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    								// chains, multiple routes per server port. So just like in TLS server case we do not
    								// track route name here. Instead, TLS server info is used (it is fine for now because
    								// this would be a mirror of an existing non-passthrough HTTPS server)
    								mergedQUICServers[serverPort] = &MergedServers{Servers: []*networking.Server{s}}
    							}
    						}
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt

      private lateinit var server: MockWebServer
      private val handshakeCertificates = platform.localhostHandshakeCertificates()
      private var client: OkHttpClient = clientTestRule.newClient()
    
      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
      }
    
      @Test
      fun connectionsAreReused() {
        server.enqueue(MockResponse(body = "a"))
        server.enqueue(MockResponse(body = "b"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top