Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for file_foo_ (0.11 sec)

  1. src/go/build/syslist_test.go

    	{"file_" + thisOS + "_" + otherArch + ".go", false},
    	{"file_" + otherOS + "_" + otherArch + ".go", false},
    	{"file_foo_" + thisArch + ".go", true},
    	{"file_foo_" + otherArch + ".go", false},
    	{"file_" + thisOS + ".c", true},
    	{"file_" + otherOS + ".c", false},
    }
    
    func TestGoodOSArch(t *testing.T) {
    	for _, test := range tests {
    		if Default.goodOSArchFile(test.name, make(map[string]bool)) != test.result {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 23 18:12:59 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/syslist_test.go

    	{"file_" + thisOS + "_" + otherArch + ".go", false},
    	{"file_" + otherOS + "_" + otherArch + ".go", false},
    	{"file_foo_" + thisArch + ".go", true},
    	{"file_foo_" + otherArch + ".go", false},
    	{"file_" + thisOS + ".c", true},
    	{"file_" + otherOS + ".c", false},
    }
    
    func TestGoodOSArch(t *testing.T) {
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 20:19:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/CachingClassLoaderTest.groovy

            def res = classLoader.getResource("foo.txt")
    
            then:
            res == new URL("file:foo.txt")
    
            and:
            1 * parent.getResource("foo.txt") >> new URL("file:foo.txt")
            0 * parent._
    
            when:
            res = classLoader.getResource("foo.txt")
    
            then:
            res == new URL("file:foo.txt")
    
            and:
            0 * parent._
        }
    
        def "caches missing resources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top