Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 948 for semver (0.28 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            proxyServer.requestCount == 1
        }
    
        def "downloads wrapper from basic authenticated server and caches"() {
            given:
            server.withBasicAuthentication("jdoe", "changeit")
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultAuthenticatedBaseUrl())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").sendFile(distribution.binDistribution))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  9. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        server.listener.assertClosing(1000, "Hello!")
        server.webSocket!!.finishReader()
        server.webSocket!!.close(1000, "Goodbye!")
        client.processNextFrame() // Read server closing, close connection.
        taskFaker.runTasks()
        client.listener.assertClosing(1000, "Goodbye!")
        client.webSocket!!.finishReader()
        assertThat(client.closed).isTrue()
    
        // Server and client both finished closing, connection is closed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                    .get(ConfigurationProperties.CONNECT_TIMEOUT + "." + server.getId());
            assertEquals(3000, connectionTimeout);
        }
    
        @Test
        void connectionTimeoutFromHttpConfigurationTest() throws InvalidRepositoryException {
            Server server = new Server();
            server.setId("repository");
            server.setUsername("jason");
            server.setPassword("abc123");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top