Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 1_ (0.02 sec)

  1. hack/gen-swagger-doc/gen-swagger-docs.sh

    sed -i "1i ${buf}" ./definitions.adoc
    
    # fix the links in .adoc, replace <<x.y>> with link:definitions.html#_x_y[x.y], and lowercase the _x_y part
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:#_\L\1_\2\E[\1.\2]|g' ./definitions.adoc
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:../definitions#_\L\1_\2\E[\1.\2]|g' ./paths.adoc
    
    # fix the link to <<any>>
    sed -i -e 's|<<any>>|link:#_any[any]|g' ./definitions.adoc
    sed -i -e 's|<<any>>|link:../definitions#_any[any]|g' ./paths.adoc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue30722.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that we only get one error per invalid integer literal.
    
    package p
    
    const (
    	_ = 1_       // ERROR "'_' must separate successive digits"
    	_ = 0b       // ERROR "binary literal has no digits|invalid numeric literal"
    	_ = 0o       // ERROR "octal literal has no digits|invalid numeric literal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 623 bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/PostString.kt

    class PostString {
      private val client = OkHttpClient()
    
      fun run() {
        val postBody =
          """
          |Releases
          |--------
          |
          | * _1.0_ May 6, 2013
          | * _1.1_ June 15, 2013
          | * _1.2_ August 11, 2013
          |
          """.trimMargin()
    
        val request =
          Request(
            url = "https://api.github.com/markdown/raw".toHttpUrl(),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Test.java

                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        <% if(packageName.contains('1_') && binding.hasVariable("failedTests"))   {  %>
    
        @org.junit.Test
        public void testFailure() throws Exception {
            for (int i = 0; i < 500; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/PostString.java

      public void run() throws Exception {
        String postBody = ""
            + "Releases\n"
            + "--------\n"
            + "\n"
            + " * _1.0_ May 6, 2013\n"
            + " * _1.1_ June 15, 2013\n"
            + " * _1.2_ August 11, 2013\n";
    
        Request request = new Request.Builder()
            .url("https://api.github.com/markdown/raw")
            .post(RequestBody.create(postBody, MEDIA_TYPE_MARKDOWN))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 25 18:02:55 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			t.Errorf("expected true for '%s': %v", val, msgs)
    		}
    	}
    
    	badValues := []string{
    		"", "A", "ABC", "aBc", "A1", "A-1", "1-A",
    		"-", "a-", "-a", "1-", "-1",
    		"_", "a_", "_a", "a_b", "1_", "_1", "1_2",
    		".", "a.", ".a", "a.b", "1.", ".1", "1.2",
    		" ", "a ", " a", "a b", "1 ", " 1", "1 2",
    		strings.Repeat("a", 64),
    	}
    	for _, val := range badValues {
    		if msgs := IsDNS1123Label(val); len(msgs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    		{IntLit, "0o60___0", "0o60___0", "'_' must separate successive digits"},
    		{IntLit, "0466_", "0466_", "'_' must separate successive digits"},
    		{FloatLit, "1_.", "1_.", "'_' must separate successive digits"},
    		{FloatLit, "0._1", "0._1", "'_' must separate successive digits"},
    		{FloatLit, "2.7_e0", "2.7_e0", "'_' must separate successive digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. src/text/scanner/scanner_test.go

    		{Int, "0b__1000", "0b__1000", "'_' must separate successive digits"},
    		{Int, "0o60___0", "0o60___0", "'_' must separate successive digits"},
    		{Int, "0466_", "0466_", "'_' must separate successive digits"},
    		{Float, "1_.", "1_.", "'_' must separate successive digits"},
    		{Float, "0._1", "0._1", "'_' must separate successive digits"},
    		{Float, "2.7_e0", "2.7_e0", "'_' must separate successive digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. src/math/big/natconv_test.go

    	{"0o60___0", 0, false, nat{0600}, 8, 3, errInvalSep, 0},
    	{"0466_", 0, false, nat{0466}, 8, 3, errInvalSep, 0},
    	{"01234567_8", 0, false, nat{01234567}, 8, 7, errInvalSep, '8'},
    	{"1_.", 0, true, nat{1}, 10, 0, errInvalSep, 0},
    	{"0._1", 0, true, nat{1}, 10, -1, errInvalSep, 0},
    	{"2.7_", 0, true, nat{27}, 10, -1, errInvalSep, 0},
    	{"0x1.0_", 0, true, nat{0x10}, 16, -1, errInvalSep, 0},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In the example above, `A` would have to say it _strictly depends on 1.1_.
    
    For this reason, a good practice is that if you use _strict versions_, you should express them in terms of ranges and a preferred version within this range.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top