Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,395 for HOST (0.07 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

            return enabled;
        }
    
        public void setEnabled(boolean enabled) {
            this.enabled = enabled;
        }
    
        public String getHost() {
            return host;
        }
    
        public void setHost(String host) {
            this.host = host;
        }
    
        public int getPort() {
            return port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinSettingsScript.kt

    open class CompiledKotlinSettingsScript(
        private val host: KotlinScriptHost<Settings>
    ) : DefaultKotlinScript(SettingsScriptHost(host)), PluginAware by PluginAwareScript(host) {
    
        /**
         * The [ScriptHandler] for this script.
         */
        val buildscript: ScriptHandler
            get() = host.scriptHandler
    
        private
        class SettingsScriptHost(val host: KotlinScriptHost<Settings>) : Host {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/web/url.go

    				return &url.URL{
    					Scheme: "file",
    					Host:   path,
    					Path:   "/",
    				}, nil
    			}
    
    			// \\host.example.com\Share\path\to\file
    			// becomes
    			// file://host.example.com/Share/path/to/file
    			return &url.URL{
    				Scheme: "file",
    				Host:   path[:i],
    				Path:   filepath.ToSlash(path[i:]),
    			}, nil
    		}
    
    		// C:\path\to\file
    		// becomes
    		// file:///C:/path/to/file
    		return &url.URL{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/productpage
      http:
      - route:
        - destination:
            host: reviews
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. src/net/http/readrequest_test.go

    			Close:         false,
    			ContentLength: 0,
    			Host:          "foo.com",
    			RequestURI:    "/",
    		},
    
    		noBodyStr,
    		noTrailer,
    		noError,
    	},
    
    	// Tests that we don't parse a path that looks like a
    	// scheme-relative URI as a scheme-relative URI.
    	{
    		"GET //user@host/is/actually/a/path/ HTTP/1.1\r\n" +
    			"Host: test\r\n\r\n",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/net/url/url.go

    	if colon != -1 && validOptionalPort(host[colon:]) {
    		host, port = host[:colon], host[colon+1:]
    	}
    
    	if strings.HasPrefix(host, "[") && strings.HasSuffix(host, "]") {
    		host = host[1 : len(host)-1]
    	}
    
    	return
    }
    
    // Marshaling interface implementations.
    // Would like to implement MarshalText/UnmarshalText but that will change the JSON representation of URLs.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. pkg/config/host/names.go

    	result := make(Names, 0, len(hosts))
    	for _, host := range hosts {
    		if strings.Contains(host, "/") {
    			parts := strings.Split(host, "/")
    			if parts[0] != namespace && parts[0] != "*" {
    				continue
    			}
    			// strip the namespace
    			host = parts[1]
    		}
    		result = append(result, Name(host))
    	}
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            "http://host/"     | "a/[revision]/c"   | "http://host/a/[revision]/c"
            "http://host"      | "a/b/c"            | "http://host/a/b/c"
            "http://host/"     | "/a/b/c"           | "http://host/a/b/c"
            "http://host/"     | ""                 | "http://host/"
            "http://host"      | ""                 | "http://host"
            "http://host/"     | "/"                | "http://host/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

                }
    
                inOrder(host, compilerOperation) {
    
                    verify(host).cachedClassFor(stage1ProgramId)
    
                    verify(host).compilationClassPathOf(parentScope)
    
                    verify(host).startCompilerOperation(shortScriptDisplayName.displayName)
    
                    verify(compilerOperation).close()
    
                    verify(host).loadClassInChildScopeOf(
                        baseScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    TEST(BatchFunctionTest, Basic) {
      auto corert = CreateTestCoreRuntime();
      auto* host = corert->GetHostContext();
      auto [bef_buffer, bef_file] = CreateBefFile(host);
      auto* func = bef_file->GetFunction("main");
      CHECK(func);
      CHECK_EQ(func->result_types().size(), 113);
      CHECK_EQ(func->argument_types().size(), 113);
    
      auto arguments = CreateTestArguments(func, host);
    
      tfrt::ResourceContext resource_ctx;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top