Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fofob (0.04 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        testEncodingWithSeparators(base64(), "f", "Zg==");
        testEncodingWithSeparators(base64(), "fo", "Zm8=");
        testEncodingWithSeparators(base64(), "foo", "Zm9v");
        testEncodingWithSeparators(base64(), "foob", "Zm9vYg==");
        testEncodingWithSeparators(base64(), "fooba", "Zm9vYmE=");
        testEncodingWithSeparators(base64(), "foobar", "Zm9vYmFy");
      }
    
      @GwtIncompatible // Reader/Writer
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  2. src/io/multi_test.go

    		mr = MultiReader(buf1, buf2)
    		runtime.SetFinalizer(buf1, func(*bytes.Reader) {
    			close(closed)
    		})
    	}()
    
    	buf := make([]byte, 4)
    	if n, err := ReadFull(mr, buf); err != nil || string(buf) != "foob" {
    		t.Fatalf(`ReadFull = %d (%q), %v; want 3, "foo", nil`, n, buf[:n], err)
    	}
    
    	runtime.GC()
    	select {
    	case <-closed:
    	case <-time.After(5 * time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                            file('output.txt') << 'do stuff'
                        }
                    }
                """
                dir("src") {
                    file("A.txt") << "fooA"
                    file("B.txt") << "fooB"
                    dir("a") {
                        file("A.txt") << "fooA"
                        dir("a") {
                            file("A.txt") << "fooA"
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/encoding/base64/base64_test.go

    	{"\x14\xfb\x9c\x03\xd9\x7e", "FPucA9l+"},
    	{"\x14\xfb\x9c\x03\xd9", "FPucA9k="},
    	{"\x14\xfb\x9c\x03", "FPucAw=="},
    
    	// RFC 4648 examples
    	{"", ""},
    	{"f", "Zg=="},
    	{"fo", "Zm8="},
    	{"foo", "Zm9v"},
    	{"foob", "Zm9vYg=="},
    	{"fooba", "Zm9vYmE="},
    	{"foobar", "Zm9vYmFy"},
    
    	// Wikipedia examples
    	{"sure.", "c3VyZS4="},
    	{"sure", "c3VyZQ=="},
    	{"sur", "c3Vy"},
    	{"su", "c3U="},
    	{"leasure.", "bGVhc3VyZS4="},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/encoding/base32/base32_test.go

    	"testing"
    )
    
    type testpair struct {
    	decoded, encoded string
    }
    
    var pairs = []testpair{
    	// RFC 4648 examples
    	{"", ""},
    	{"f", "MY======"},
    	{"fo", "MZXQ===="},
    	{"foo", "MZXW6==="},
    	{"foob", "MZXW6YQ="},
    	{"fooba", "MZXW6YTB"},
    	{"foobar", "MZXW6YTBOI======"},
    
    	// Wikipedia examples, converted to base32
    	{"sure.", "ON2XEZJO"},
    	{"sure", "ON2XEZI="},
    	{"sur", "ON2XE==="},
    	{"su", "ON2Q===="},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top