Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fofob (0.03 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. 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)
  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/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)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def fooA = task("foo", project: projectA)
            def barA = task("bar", project: projectA)
    
            def fooB = task("foo", project: projectB)
            def barB = task("bar", project: projectB)
    
            when:
            addToGraphAndPopulate(fooA, barA, fooB, barB)
            def taskNode1 = selectNextTaskNode()
            def taskNode2 = selectNextTaskNode()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top