Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,099 for myHost (0.16 sec)

  1. src/net/http/httputil/dump_test.go

    	{
    		GetReq: func() *http.Request {
    			return mustReadRequest("POST /v2/api/?login HTTP/1.1\r\n" +
    				"Host: passport.myhost.com\r\n" +
    				"Content-Length: 3\r\n" +
    				"\r\nkey1=name1&key2=name2")
    		},
    		WantDump: "POST /v2/api/?login HTTP/1.1\r\n" +
    			"Host: passport.myhost.com\r\n" +
    			"Content-Length: 3\r\n" +
    			"\r\nkey",
    	},
    	// Issue #7215. DumpRequest should return the "Content-Length" in ReadRequest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

            when:
            executer.startLauncherInDebugger {
                it.server = false
                it.host = "myHost"
            }
    
            then:
            def launcherArgs = executer.buildInvocation().launcherJvmArgs
            def debugArgument = JvmOptions.getDebugArgument(false, true, "myHost:5005")
            launcherArgs.contains(debugArgument)
            !executer.implicitBuildJvmArgs.contains(debugArgument)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/net/dnsclient.go

    // routines.
    // See golang.org/issue/12189.
    // But we don't want to add dots for local names from /etc/hosts.
    // It's hard to tell so we settle on the heuristic that names without dots
    // (like "localhost" or "myhost") do not get trailing dots, but any other
    // names do.
    func absDomainName(s string) string {
    	if bytealg.IndexByteString(s, '.') != -1 && s[len(s)-1] != '.' {
    		s += "."
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/conf/settings.xml

            <jdk>1.4</jdk>
          </activation>
    
          <repositories>
            <repository>
              <id>jdk14</id>
              <name>Repository for JDK 1.4 builds</name>
              <url>http://www.myhost.com/maven/jdk14</url>
              <layout>default</layout>
              <snapshotPolicy>always</snapshotPolicy>
            </repository>
          </repositories>
        </profile>
        -->
    
        <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			in:   "",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "junk",
    			in:   "aaaaaaa",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "domain name",
    			in:   "myhost.mydomain",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "cidr",
    			in:   "1.2.3.0/24",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "ipv4 with out-of-range octets",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/syscall/mkpost.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // mkpost processes the output of cgo -godefs to
    // modify the generated types. It is used to clean up
    // the syscall API in an architecture specific manner.
    //
    // mkpost is run after cgo -godefs by mkall.sh.
    package main
    
    import (
    	"fmt"
    	"go/format"
    	"io"
    	"log"
    	"os"
    	"regexp"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/mysort/mysort.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generic sort function, tested with two different pointer types.
    
    package mysort
    
    import (
    	"fmt"
    )
    
    type LessConstraint[T any] interface {
    	Less(T) bool
    }
    
    //go:noinline
    func Sort[T LessConstraint[T]](x []T) {
    	n := len(x)
    	for i := 1; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 20:53:52 UTC 2021
    - 762 bytes
    - Viewed (0)
  8. releasenotes/notes/optimize-most-specific-host-match.yaml

    sschepens <******@****.***> 1667330362 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

                compileTestJava.options.fork = true  // forked as 'Gradle Test Executor 1'
            """
    
            file("src/test/java/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            when:
            launchTests(testDescriptors("example.MyTest"));
            then:
            assertTaskExecuted(":test")
            assertTaskExecuted(":secondTest")
    
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top