Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for a$b (0.17 sec)

  1. src/fmt/fmt_test.go

    	{"%+q", "日本語", `"\u65e5\u672c\u8a9e"`},
    	{"%#q", "日本語", "`日本語`"},
    	{"%#+q", "日本語", "`日本語`"},
    	{"%q", "\a\b\f\n\r\t\v\"\\", `"\a\b\f\n\r\t\v\"\\"`},
    	{"%+q", "\a\b\f\n\r\t\v\"\\", `"\a\b\f\n\r\t\v\"\\"`},
    	{"%#q", "\a\b\f\n\r\t\v\"\\", `"\a\b\f\n\r\t\v\"\\"`},
    	{"%#+q", "\a\b\f\n\r\t\v\"\\", `"\a\b\f\n\r\t\v\"\\"`},
    	{"%q", "☺", `"☺"`},
    	{"% q", "☺", `"☺"`}, // The space modifier should have no effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    			}
    		}
    	}
    }
    
    func TestIssue20490(t *testing.T) {
    	var tests = []struct {
    		a, b float64
    	}{
    		{4, 1},
    		{-4, 1},
    		{4, -1},
    		{-4, -1},
    	}
    
    	for _, test := range tests {
    		a, b := NewFloat(test.a), NewFloat(test.b)
    		diff := new(Float).Sub(a, b)
    		b.Sub(a, b)
    		if b.Cmp(diff) != 0 {
    			t.Errorf("got %g - %g = %g; want %g\n", a, NewFloat(test.b), b, diff)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy_test.go

    		wantRaw  string
    	}{
    		{&url.URL{Path: "/a/b"}, &url.URL{Path: "/c"}, "/a/b/c", ""},
    		{&url.URL{Path: "/a/b", RawPath: "badpath"}, &url.URL{Path: "c"}, "/a/b/c", "/a/b/c"},
    		{&url.URL{Path: "/a/b", RawPath: "/a%2Fb"}, &url.URL{Path: "/c"}, "/a/b/c", "/a%2Fb/c"},
    		{&url.URL{Path: "/a/b", RawPath: "/a%2Fb"}, &url.URL{Path: "/c"}, "/a/b/c", "/a%2Fb/c"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    }
    
    func zeroArgs() string {
    	return "zeroArgs"
    }
    
    func oneArg(a string) string {
    	return "oneArg=" + a
    }
    
    func twoArgs(a, b string) string {
    	return "twoArgs=" + a + b
    }
    
    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                else -> error("Unexpected ${this::class}")
            }
    
        /**
         * Note: The resulting sequence does not contain non-qualified types!
         *
         * For type `A.B.C.D` it will return sequence of [`A.B.C.D`, `A.B.C`, `A.B`] (**without** `A`).
         */
        private val KtUserType.qualifiedTypesWithSelf: Sequence<KtUserType>
            get() {
                require(qualifier != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterator containing two
       * inner lists of three and two elements, all in the original order.
       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterator containing two
       * inner lists of three and two elements, all in the original order.
       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    	s   string
    	sep string
    	n   int
    	a   []string
    }
    
    var splittests = []SplitTest{
    	{"", "", -1, []string{}},
    	{abcd, "", 2, []string{"a", "bcd"}},
    	{abcd, "", 4, []string{"a", "b", "c", "d"}},
    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{faces, "", 3, []string{"☺", "☻", "☹"}},
    	{faces, "", 17, []string{"☺", "☻", "☹"}},
    	{"☺�☹", "", -1, []string{"☺", "�", "☹"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testPowerSetSize() {
        assertPowerSetSize(1);
        assertPowerSetSize(2, 'a');
        assertPowerSetSize(4, 'a', 'b');
        assertPowerSetSize(8, 'a', 'b', 'c');
        assertPowerSetSize(16, 'a', 'b', 'd', 'e');
        assertPowerSetSize(
            1 << 30, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
            'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3', '4');
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: "Allow",
    			JobTemplate: batchv1.JobTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels:      map[string]string{"a": "b"},
    					Annotations: map[string]string{"x": "y"},
    				},
    				Spec: jobSpec(),
    			},
    		},
    	}
    }
    
    func jobSpec() batchv1.JobSpec {
    	one := int32(1)
    	return batchv1.JobSpec{
    		Parallelism: &one,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top