Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 531 for _abc (0.04 sec)

  1. guava-tests/test/com/google/common/base/OptionalTest.java

        assertEquals(java.util.Optional.of("abc"), Optional.toJavaUtil(Optional.of("abc")));
      }
    
      public void testToJavaUtil_instance() {
        assertEquals(java.util.Optional.empty(), Optional.absent().toJavaUtil());
        assertEquals(java.util.Optional.of("abc"), Optional.of("abc").toJavaUtil());
      }
    
      public void testFromJavaUtil() {
        assertNull(Optional.fromJavaUtil(null));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/encoding/json/fold_test.go

    package json
    
    import (
    	"bytes"
    	"testing"
    )
    
    func FuzzEqualFold(f *testing.F) {
    	for _, ss := range [][2]string{
    		{"", ""},
    		{"123abc", "123ABC"},
    		{"αβδ", "ΑΒΔ"},
    		{"abc", "xyz"},
    		{"abc", "XYZ"},
    		{"1", "2"},
    		{"hello, world!", "hello, world!"},
    		{"hello, world!", "Hello, World!"},
    		{"hello, world!", "HELLO, WORLD!"},
    		{"hello, world!", "jello, world!"},
    		{"γειά, κόσμε!", "γειά, κόσμε!"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/apis/policy/validation/validation_test.go

    				}
    			})
    		}
    	}
    }
    
    func TestIsValidSysctlPattern(t *testing.T) {
    	valid := []string{
    		"a.b.c.d",
    		"a",
    		"a_b",
    		"a-b",
    		"abc",
    		"abc.def",
    		"*",
    		"a.*",
    		"*",
    		"abc*",
    		"a.abc*",
    		"a.b.*",
    		"a/b/c/d",
    		"a/*",
    		"a/b/*",
    		"a.b/c*",
    		"a.b/c.d",
    		"a/b.c/d",
    	}
    	invalid := []string{
    		"",
    		"ä",
    		"a_",
    		"_",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. internal/grid/types_test.go

    		t.Errorf("MSS: %v != %v", v, v2)
    	}
    }
    
    func BenchmarkMarshalMsgMSS(b *testing.B) {
    	v := MSS{"abc": "def", "ghi": "jkl"}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgMSS(b *testing.B) {
    	v := MSS{"abc": "def", "ghi": "jkl"}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/strconv/ftoa_test.go

    		if s != test.s {
    			t.Error("testN=64", test.f, string(test.fmt), test.prec, "want", test.s, "got", s)
    		}
    		x := AppendFloat([]byte("abc"), test.f, test.fmt, test.prec, 64)
    		if string(x) != "abc"+test.s {
    			t.Error("AppendFloat testN=64", test.f, string(test.fmt), test.prec, "want", "abc"+test.s, "got", string(x))
    		}
    		if float64(float32(test.f)) == test.f && test.fmt != 'b' {
    			s := FormatFloat(test.f, test.fmt, test.prec, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/linalg_grad.cc

    //
    //  scope: Scope for grad operations.
    //  output_grad: The gradient wrt the output of a unary einsum operation.
    //  output_subs: The output subscript. (E.g. `ac` for equation `abc->ac`).
    //  input_subs: The input subscript. (E.g. `abc` for equation `abc->ac`).
    //  input_shape: The shape of the input operand.
    //  reduced_label_set: The set of axis labels appearing in `input_subs` but
    //    not in `output_subs`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  7. native-image-tests/src/main/kotlin/okhttp3/SampleTest.kt

      }
    
      @Test
      fun testMockWebServer(server: MockWebServer) {
        server.enqueue(MockResponse(body = "abc"))
    
        val client = clientRule.newClient()
    
        client.newCall(Request(url = server.url("/"))).execute().use {
          assertThat(it.body.string()).isEqualTo("abc")
        }
      }
    
      @Test
      fun testExternalSite() {
        val client = clientRule.newClient()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/net/textproto/writer_test.go

    	}
    }
    
    func TestDotWriter(t *testing.T) {
    	var buf strings.Builder
    	w := NewWriter(bufio.NewWriter(&buf))
    	d := w.DotWriter()
    	n, err := d.Write([]byte("abc\n.def\n..ghi\n.jkl\n."))
    	if n != 21 || err != nil {
    		t.Fatalf("Write: %d, %s", n, err)
    	}
    	d.Close()
    	want := "abc\r\n..def\r\n...ghi\r\n..jkl\r\n..\r\n.\r\n"
    	if s := buf.String(); s != want {
    		t.Fatalf("wrote %q", s)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 13:55:46 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/strategy_test.go

    			Spec: api.PodSpec{
    				RestartPolicy: api.RestartPolicyAlways,
    				DNSPolicy:     api.DNSClusterFirst,
    				Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent"}},
    			},
    		},
    	}
    	ps := &apps.StatefulSet{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    		Spec: apps.StatefulSetSpec{
    			PodManagementPolicy: apps.OrderedReadyPodManagement,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/text/TokenizerTest.java

        /**
         * @throws Exception
         */
        @Test
        public void pend_testDot() throws Exception {
            final Tokenizer tokenizer = new Tokenizer("abc.hoge");
            assertThat(tokenizer.nextToken(), is(Tokenizer.TT_WORD));
            assertThat(tokenizer.getStringValue(), is("abc.hoge"));
            assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top