Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for fofob (0.04 sec)

  1. src/bytes/bytes_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. test/typeparam/issue48838.go

    	check[string]()
    }
    
    func check[T any]() {
    	var result setter[T]
    	switch result.(type) {
    	case fooA[T]:
    	case fooB[T]:
    	}
    }
    
    type setter[T any] interface {
    	Set(T)
    }
    
    type fooA[T any] struct{}
    
    func (fooA[T]) Set(T) {}
    
    type fooB[T any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 467 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

            when:
            availablePaths = ["fo", "bor", "for", "of", "foob"]
    
            then:
            suggestionsFor("foo") == ["fo", "foob", "for"]
            suggestionsFor("foor") == ["foob", "for", "bor", "fo"]
            suggestionsFor("foora") == ["foob", "for"]
        }
    
        def "suggestions are ordered by distance then alphabetical"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. maven-core/src/test/java/org/apache/maven/toolchain/RequirementMatcherFactoryTest.java

            matcher = RequirementMatcherFactory.createExactMatcher("foo");
            assertFalse(matcher.matches("bar"));
            assertFalse(matcher.matches("foobar"));
            assertFalse(matcher.matches("foob"));
            assertTrue(matcher.matches("foo"));
        }
    
        /**
         * Test of createVersionMatcher method, of class RequirementMatcherFactory.
         */
        @Test
        void testCreateVersionMatcher() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue33355.go

    			mh = append(mh, queues...)
    		}
    		sub.client = gwc
    	}
    	subPool.Put(sub)
    }
    
    func subjectStartsWithGatewayReplyPrefix(subj []byte) bool {
    	return len(subj) > 8 && string(subj[:4]) == "foob"
    }
    
    func (c *client) gatewayInterest(acc, subj string) *SublistResult {
    	ei, _ := c.gw.outsim.Load(acc)
    	var r *SublistResult
    	e := ei.(*outsie)
    	r = e.sl.Match(subj)
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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