Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for textWrap (0.15 sec)

  1. guava-tests/test/com/google/common/primitives/PrimitivesTest.java

      public void testIsWrapperType() {
        assertThat(Primitives.isWrapperType(Void.class)).isTrue();
        assertThat(Primitives.isWrapperType(void.class)).isFalse();
      }
    
      public void testWrap() {
        assertThat(Primitives.wrap(int.class)).isSameInstanceAs(Integer.class);
        assertThat(Primitives.wrap(Integer.class)).isSameInstanceAs(Integer.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/PrimitivesTest.java

      public void testIsWrapperType() {
        assertThat(Primitives.isWrapperType(Void.class)).isTrue();
        assertThat(Primitives.isWrapperType(void.class)).isFalse();
      }
    
      public void testWrap() {
        assertThat(Primitives.wrap(int.class)).isSameInstanceAs(Integer.class);
        assertThat(Primitives.wrap(Integer.class)).isSameInstanceAs(Integer.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/go/doc/comment/wrap_test.go

    package comment
    
    import (
    	"flag"
    	"fmt"
    	"math/rand"
    	"testing"
    	"time"
    	"unicode/utf8"
    )
    
    var wrapSeed = flag.Int64("wrapseed", 0, "use `seed` for wrap test (default auto-seeds)")
    
    func TestWrap(t *testing.T) {
    	if *wrapSeed == 0 {
    		*wrapSeed = time.Now().UnixNano()
    	}
    	t.Logf("-wrapseed=%#x\n", *wrapSeed)
    	r := rand.New(rand.NewSource(*wrapSeed))
    
    	// Generate words of random length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

          return input.length();
        }
      }
    
      private static final Equivalence<String> LENGTH_EQUIVALENCE =
          Equivalence.equals().onResultOf(LengthFunction.INSTANCE);
    
      public void testWrap() {
        new EqualsTester()
            .addEqualityGroup(
                LENGTH_EQUIVALENCE.wrap("hello"),
                LENGTH_EQUIVALENCE.wrap("hello"),
                LENGTH_EQUIVALENCE.wrap("world"))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell_test.go

    	// are valid in the shell script we use for comparison.
    	f.Add([]byte(`-r:foo -L/usr/white\ space/lib -lfoo\ bar -lbar\ baz`))
    	f.Add([]byte(`-lextra\ fun\ arg\\`))
    	f.Add([]byte("\textra     whitespace\r"))
    	f.Add([]byte("     \r      "))
    	f.Add([]byte(`"-r:foo" "-L/usr/white space/lib" "-lfoo bar" "-lbar baz"`))
    	f.Add([]byte(`"-lextra fun arg\\"`))
    	f.Add([]byte(`"     \r\n\      "`))
    	f.Add([]byte(`""`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/cmd/go/internal/work/build_test.go

    	}{
    		{[]byte(`-r:foo -L/usr/white\ space/lib -lfoo\ bar -lbar\ baz`), []string{"-r:foo", "-L/usr/white space/lib", "-lfoo bar", "-lbar baz"}},
    		{[]byte(`-lextra\ fun\ arg\\`), []string{`-lextra fun arg\`}},
    		{[]byte("\textra     whitespace\r\n"), []string{"extra", "whitespace\r"}},
    		{[]byte("     \r\n      "), []string{"\r"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/syscall/zerrors_aix_ppc64.go

    	EXPGIO                        = 0x0
    	EXRESUME                      = 0x2
    	EXRETURN                      = 0x1
    	EXSIG                         = 0x4
    	EXTA                          = 0xe
    	EXTB                          = 0xf
    	EXTRAP                        = 0x1
    	EYEC_RTENTRYA                 = 0x257274656e747241
    	EYEC_RTENTRYF                 = 0x257274656e747246
    	E_ACC                         = 0x0
    	FD_CLOEXEC                    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	EXRESUME                      = 0x2
    	EXRETURN                      = 0x1
    	EXSIG                         = 0x4
    	EXTA                          = 0xe
    	EXTB                          = 0xf
    	EXTRAP                        = 0x1
    	EYEC_RTENTRYA                 = 0x257274656e747241
    	EYEC_RTENTRYF                 = 0x257274656e747246
    	E_ACC                         = 0x0
    	FD_CLOEXEC                    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	EXRESUME                      = 0x2
    	EXRETURN                      = 0x1
    	EXSIG                         = 0x4
    	EXTA                          = 0xe
    	EXTB                          = 0xf
    	EXTRAP                        = 0x1
    	EYEC_RTENTRYA                 = 0x257274656e747241
    	EYEC_RTENTRYF                 = 0x257274656e747246
    	E_ACC                         = 0x0
    	FD_CLOEXEC                    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
Back to top