Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for HttpServer (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethod.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    import com.google.common.base.Charsets;
    import com.google.common.io.Files;
    import com.sun.net.httpserver.HttpExchange;
    import org.gradle.test.fixtures.server.http.BlockingHttpServer.BlockingRequest;
    import org.gradle.test.fixtures.server.http.BlockingHttpServer.BuildableExpectedRequest;
    import org.hamcrest.Matcher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/server-main.go

    			UseBaseContext(GlobalContext).
    			UseCustomLogger(log.New(io.Discard, "", 0)). // Turn-off random logging by Go stdlib
    			UseTCPOptions(globalTCPOptions)
    
    		httpServer.TCPOptions.Trace = bootstrapTraceMsg
    		go func() {
    			serveFn, err := httpServer.Init(GlobalContext, func(listenAddr string, err error) {
    				bootLogIf(GlobalContext, fmt.Errorf("Unable to listen on `%s`: %v", listenAddr, err))
    			})
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

    import org.gradle.kotlin.dsl.tooling.models.KotlinBuildScriptModel
    import org.gradle.test.fixtures.dsl.GradleDsl
    import org.gradle.test.fixtures.file.LeaksFileHandles
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

     */
    package org.gradle.plugins.ide
    
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.fixtures.server.http.IvyHttpModule
    import org.gradle.test.fixtures.server.http.IvyHttpRepository
    import org.gradle.test.fixtures.server.http.MavenHttpRepository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

        public final TestResources resources = new TestResources(temporaryFolder)
    
        @Rule
        public final SetSystemProperties systemProperties = new SetSystemProperties()
    
        @Rule
        public final HttpServer server = new HttpServer()
    
        @Override
        String subprojectName() { null }
    
        abstract BuildInitDsl getScriptDsl()
    
        def setup() {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/registry/core/rest/storage_core.go

    	serversToValidate := map[string]componentstatus.Server{
    		"controller-manager": &componentstatus.HttpServer{EnableHTTPS: true, TLSConfig: &tls.Config{InsecureSkipVerify: true}, Addr: "127.0.0.1", Port: ports.KubeControllerManagerPort, Path: "/healthz"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    import com.sun.net.httpserver.HttpExchange;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.time.Clock;
    import org.gradle.internal.time.Time;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/proxy/healthcheck/healthcheck_test.go

    }
    
    type fakeHTTPServerFactory struct{}
    
    func newFakeHTTPServerFactory() *fakeHTTPServerFactory {
    	return &fakeHTTPServerFactory{}
    }
    
    func (fake *fakeHTTPServerFactory) New(addr string, handler http.Handler) httpServer {
    	return &fakeHTTPServer{
    		addr:    addr,
    		handler: handler,
    	}
    }
    
    type fakeHTTPServer struct {
    	addr    string
    	handler http.Handler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	ui.help["flamegraph"] = "Display profile as a flame graph"
    	ui.help["reset"] = "Show the entire profile"
    	ui.help["save_config"] = "Save current settings"
    
    	server := o.HTTPServer
    	if server == nil {
    		server = defaultWebServer
    	}
    	args := &plugin.HTTPServerArgs{
    		Hostport: net.JoinHostPort(host, strconv.Itoa(port)),
    		Host:     host,
    		Port:     port,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top