Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 272 for serverOk (0.18 sec)

  1. src/net/http/httptest/server.go

    // Certificate returns the certificate used by the server, or nil if
    // the server doesn't use TLS.
    func (s *Server) Certificate() *x509.Certificate {
    	return s.certificate
    }
    
    // Client returns an HTTP client configured for making requests to the server.
    // It is configured to trust the server's TLS test certificate and will
    // close its idle connections on [Server.Close].
    // Use Server.URL as the base URL to send requests to the server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

        @Test
        void testValidateUniqueServerId() throws Exception {
            Settings settings = new Settings();
            Server server1 = new Server();
            server1.setId("test");
            settings.addServer(server1);
            Server server2 = new Server();
            server2.setId("test");
            settings.addServer(server2);
    
            SimpleProblemCollector problems = new SimpleProblemCollector();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                dataService.delete(sessionId);
            } finally {
                server.stop();
            }
        }
    
        public void test_execute_2instance() throws Exception {
            final CrawlerWebServer server1 = new CrawlerWebServer(7070);
            server1.start();
            final CrawlerWebServer server2 = new CrawlerWebServer(7071);
            server2.start();
    
            final String url1 = "http://localhost:7070/";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	serveroptions "k8s.io/apiextensions-apiserver/pkg/cmd/server/options"
    	servertesting "k8s.io/apiextensions-apiserver/pkg/cmd/server/testing"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	storagevalue "k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    )
    
    // StartDefaultServer starts a test server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    }
    
    // Options contains everything necessary to create and run a proxy server.
    type Options struct {
    	// ConfigFile is the location of the proxy server's configuration file.
    	ConfigFile string
    	// WriteConfigTo is the path where the default configuration will be written.
    	WriteConfigTo string
    	// CleanupAndExit, when true, makes the proxy server clean up iptables and ipvs rules, then exit.
    	CleanupAndExit bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    )
    
    // A conn represents the server side of an HTTP connection.
    type conn struct {
    	// server is the server on which the connection arrived.
    	// Immutable; never nil.
    	server *Server
    
    	// cancelCtx cancels the connection-level context.
    	cancelCtx context.CancelFunc
    
    	// rwc is the underlying network connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

            def done = new CountDownLatch(2)
            def server = new Server()
            def client = new Client(server.address)
    
            when:
            start {
                server.addIncoming(serverService)
                server.setupOutgoingService2()
                server.connection.connect()
                server.outgoingService2.doStuff("server1")
                server.outgoingService2.doStuff("server2")
            }
            start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                dataService.delete(sessionId);
            } finally {
                server.stop();
            }
        }
    
        public void test_execute_2instance() throws Exception {
            final CrawlerWebServer server1 = new CrawlerWebServer(7070);
            server1.start();
            final CrawlerWebServer server2 = new CrawlerWebServer(7071);
            server2.start();
    
            final String url1 = "http://localhost:7070/";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // This DOES NOT limit the dispatching from this priority level
      // but affects the other priority levels through the borrowing mechanism.
      // The server's concurrency limit (ServerCL) is divided among all the
      // priority levels in proportion to their NCS values:
      //
      // NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
      // sum_ncs = sum[priority level k] NCS(k)
      //
      // Bigger numbers mean a larger nominal concurrency limit,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    import (
    	"context"
    	"io"
    
    	"github.com/spf13/cobra"
    
    	"k8s.io/apiextensions-apiserver/pkg/cmd/server/options"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    )
    
    func NewServerCommand(ctx context.Context, out, errOut io.Writer) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top