Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 371 for separators (0.16 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	field-value    = *( field-content | LWS )
    //	field-content  = <the OCTETs making up the field-value
    //	                 and consisting of either *TEXT or combinations
    //	                 of token, separators, and quoted-string>
    //
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
    //
    //	TEXT           = <any OCTET except CTLs,
    //	                  but including LWS>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that uses the given single-character separator. For example, {@code
       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/path/filepath/match_test.go

    			t.Errorf("Glob(%#q) = %#v want []", pattern, matches)
    		}
    	}
    }
    
    func TestCVE202230632(t *testing.T) {
    	// Prior to CVE-2022-30632, this would cause a stack exhaustion given a
    	// large number of separators (more than 4,000,000). There is now a limit
    	// of 10,000.
    	_, err := Glob("/*" + strings.Repeat("/", 10001))
    	if err != ErrBadPattern {
    		t.Fatalf("Glob returned err=%v, want ErrBadPattern", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        private static final HashCode EXPECTED_WRAPPER_JAR_HASH = HashCode.fromString("498495120a03b9a6ab5d155f5de3c8f0d986a449153702fb80fc80e134484f17")
    
        def "generated wrapper scripts use correct line separators"() {
            buildFile << """
                wrapper {
                    distributionUrl = 'http://localhost:8080/gradlew/dist'
                }
            """
    
            when:
            run "wrapper", "--no-validate-url"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            then:
            result.assertThatCause(startsWith("The specified installation directory '${file('build')}' is neither empty nor does it contain an installation"))
        }
    
        def "startScripts respect OS dependent line separators"() {
            file('build.gradle') << '''
        installDist.destinationDir = buildDir
        '''
    
            when:
            run 'startScripts'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InternetDomainName.java

     * lookups.
     *
     * <p>During construction, names are normalized in two ways:
     *
     * <ol>
     *   <li>ASCII uppercase characters are converted to lowercase.
     *   <li>Unicode dot separators other than the ASCII period ({@code '.'}) are converted to the ASCII
     *       period.
     * </ol>
     *
     * <p>The normalized values will be returned from {@link #toString()} and {@link #parts()}, and will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

     * lookups.
     *
     * <p>During construction, names are normalized in two ways:
     *
     * <ol>
     *   <li>ASCII uppercase characters are converted to lowercase.
     *   <li>Unicode dot separators other than the ASCII period ({@code '.'}) are converted to the ASCII
     *       period.
     * </ol>
     *
     * <p>The normalized values will be returned from {@link #toString()} and {@link #parts()}, and will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/README

    os.PathSeparator respectively) but are not inherited in subprocess environments.
    
    Adding single quotes around text keeps spaces in that text from being treated
    as word separators and also disables environment variable expansion. Inside a
    single-quoted block of text, a repeated single quote indicates a literal single
    quote, as in:
    
        'Don''t communicate by sharing memory.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/html/template/transition.go

    func tCSS(c context, s []byte) (context, int) {
    	// CSS quoted strings are almost never used except for:
    	// (1) URLs as in background: "/foo.png"
    	// (2) Multiword font-names as in font-family: "Times New Roman"
    	// (3) List separators in content values as in inline-lists:
    	//    <style>
    	//    ul.inlineList { list-style: none; padding:0 }
    	//    ul.inlineList > li { display: inline }
    	//    ul.inlineList > li:before { content: ", " }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		assert.Equal(t, responseBody, string(testConnConstructor.mockConn.written), "extra data written to net.Conn")
    	})
    
    	// Tolerate header separators of \n instead of \r\n, and extra data after response headers should be sent to net.Conn.
    	t.Run("simple-tolerate-lf", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top