Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for a$b (0.03 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		"lib.T.M": {"method expr (lib.T) M(lib.T)", ".[0]"},
    
    		"A{}.B":    {"field (main.A) B *main.B", ".[0]"},
    		"new(A).B": {"field (*main.A) B *main.B", "->[0]"},
    		"A{}.C":    {"field (main.A) C main.C", ".[1]"},
    		"new(A).C": {"field (*main.A) C main.C", "->[1]"},
    		"A{}.b":    {"field (main.A) b int", "->[0 0]"},
    		"new(A).b": {"field (*main.A) b int", "->[0 0]"},
    		"A{}.c":    {"field (main.A) c int", ".[1 0]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

        if (negated_op->kind() == pred_kind) {
          // Slightly more complicated case:
          //
          //   (~A | ~B | ~C) & A & B & C & ... ==
          //   ~(A & B & C) & (A & B & C) & ... == False
          //
          //   (~A & ~B & ~C) | A | B | C | ... ==
          //   ~(A | B | C) | (A | B | C) | ... == True
          if (absl::c_all_of(negated_op->GetOperands(), [&](Predicate* p) {
                return simplified_ops_set.contains(p);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top