Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for shtml (0.07 sec)

  1. src/net/http/request.go

    	if len(req.Header["Host"]) > 1 {
    		return nil, fmt.Errorf("too many Host headers")
    	}
    
    	// RFC 7230, section 5.3: Must treat
    	//	GET /index.html HTTP/1.1
    	//	Host: www.google.com
    	// and
    	//	GET http://www.google.com/index.html HTTP/1.1
    	//	Host: doesntmatter
    	// the same. In the second case, any Host line is ignored.
    	req.Host = req.URL.Host
    	if req.Host == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(base.resolve("ht-tp//b/")).isEqualTo(parse("http://a/ht-tp//b/"))
        assertThat(base.resolve("ht.tp//b/")).isEqualTo(parse("http://a/ht.tp//b/"))
      }
    
      /**
       * https://tools.ietf.org/html/rfc3986#section-5.4.1
       */
      @Test
      fun rfc3886NormalExamples() {
        val url = parse("http://a/b/c/d;p?q")
        // No 'g:' scheme in HttpUrl.
        assertThat(url.resolve("g:h")).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. .bazelrc

    # Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
    # target CPU to build transient dependencies correctly. See
    # https://docs.bazel.build/versions/master/user-manual.html#flag--fat_apk_cpu
    build:android --crosstool_top=//external:android/crosstool
    build:android --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
    build:android_arm --config=android
    build:android_arm --cpu=armeabi-v7a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    === Configuring the console output
    
    By default, if dependency verification fails, Gradle will generate a small summary about the verification failure as well as an HTML report containing the full information about the failures.
    If your environment prevents you from reading this HTML report file (for example if you run a build on CI and that it's not easy to fetch the remote artifacts), Gradle provides a way to opt-in a verbose console report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("test.html", pom.getValue("reporting/plugins[1]/configuration/outputFile"));
            assertEquals(1, ((List<?>) pom.getValue("reporting/plugins[1]/reportSets")).size());
            assertEquals("it", pom.getValue("reporting/plugins[1]/reportSets[1]/id"));
            assertEquals("index.html", pom.getValue("reporting/plugins[1]/reportSets[1]/configuration/outputFile"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. src/reflect/type.go

    // Zero takes a Type and returns a Value representing a zero value
    // for that type.
    //
    // See "The Laws of Reflection" for an introduction to reflection in Go:
    // https://golang.org/doc/articles/laws_of_reflection.html
    package reflect
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"strconv"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    	"unsafe"
    )
    
    // Type is the representation of a Go type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, schedule, "cannot use TZ or CRON_TZ in schedule, use timeZone field instead"))
    	}
    
    	return allErrs
    }
    
    // https://data.iana.org/time-zones/theory.html#naming
    // * A name must not be empty, or contain '//', or start or end with '/'.
    // * Do not use the file name components '.' and '..'.
    // * Within a file name component, use only ASCII letters, '.', '-' and '_'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server_test.go

    	fw.fakeKubelet.logFunc = func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(http.StatusOK)
    		w.Header().Add("Content-Type", "text/html")
    		w.Write([]byte(content))
    	}
    
    	resp, err := http.Get(fw.testHTTPServer.URL + "/logs/")
    	if err != nil {
    		t.Fatalf("Got error GETing: %v", err)
    	}
    	defer resp.Body.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        /**
         * This supports painless invocation by the Verifier during embedded execution of the core ITs.
         * See <a href="http://maven.apache.org/shared/maven-verifier/xref/org/apache/maven/it/Embedded3xLauncher.html">
         * <code>Embedded3xLauncher</code> in <code>maven-verifier</code></a>
         *
         * @param args CLI args
         * @param workingDirectory working directory
         * @param stdout stdout
         * @param stderr stderr
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top