Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dummyArch (0.1 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def platform = Stub(NativePlatformInternal)
    
        def dummyOs = new DefaultOperatingSystem("currentOS", OperatingSystem.current())
        def dummyArch = Architectures.forInput("x86_64")
    
        def "is unavailable when platform is not known and is not the default platform"() {
            given:
            platform.displayName >> '<unknown>'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile_test.go

    package obj
    
    import (
    	"bytes"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    	"unsafe"
    
    	"cmd/internal/goobj"
    	"cmd/internal/sys"
    )
    
    var dummyArch = LinkArch{Arch: sys.ArchAMD64}
    
    func TestContentHash64(t *testing.T) {
    	s1 := &LSym{P: []byte("A")}
    	s2 := &LSym{P: []byte("A\x00\x00\x00")}
    	s1.Set(AttrContentAddressable, true)
    	s2.Set(AttrContentAddressable, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    			isPatchingNeeded: true,
    		},
    		{
    			name:             "wrong labels",
    			existingNode:     &v1.Node{ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{v1.LabelOSStable: "dummyOS", v1.LabelArchStable: "dummyArch"}}},
    			isPatchingNeeded: true,
    		},
    		{
    			name:             "correct labels",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top