Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for tstf (0.05 sec)

  1. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	// to unsafe.Pointer can't be combined with the
    	// uintptr cast above.
    	var z uintptr
    	if always {
    		z = y
    	} else {
    		z = 0
    	}
    	return (*[7]uint)(unsafe.Pointer(z))
    }
    
    func testf(t *testing.T) {
    	a = new([8]uint)
    	for i := 0; i < 8; i++ {
    		a[i] = 0xabcd
    	}
    	c := f_ssa()
    	for i := 0; i < 8; i++ {
    		if c[i] != 0xabcd {
    			t.Fatalf("%d:%x\n", i, c[i])
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (2)
  2. src/net/http/sniff_test.go

    	{"AVI video #2", []byte("RIFF,\n\x00\x00AVI LISTÀ"), "video/avi"},
    
    	// Font types.
    	// {"MS.FontObject", []byte("\x00\x00")},
    	{"TTF sample  I", []byte("\x00\x01\x00\x00\x00\x17\x01\x00\x00\x04\x01\x60\x4f"), "font/ttf"},
    	{"TTF sample II", []byte("\x00\x01\x00\x00\x00\x0e\x00\x80\x00\x03\x00\x60\x46"), "font/ttf"},
    
    	{"OTTO sample  I", []byte("\x4f\x54\x54\x4f\x00\x0e\x00\x80\x00\x03\x00\x60\x42\x41\x53\x45"), "font/otf"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/runtime/mkduff.go

    	// On return, R20 points to the last zeroed dword.
    	fmt.Fprintln(w, "TEXT runtime·duffzero<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-0")
    	for i := 0; i < 63; i++ {
    		fmt.Fprintln(w, "\tSTP.P\t(ZR, ZR), 16(R20)")
    	}
    	fmt.Fprintln(w, "\tSTP\t(ZR, ZR), (R20)")
    	fmt.Fprintln(w, "\tRET")
    }
    
    func copyARM64(w io.Writer) {
    	// R20: ptr to source memory
    	// R21: ptr to destination memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/runtime/iface_test.go

    func (TL) Method1() {}
    func (TL) Method2() {}
    
    type T8 uint8
    type T16 uint16
    type T32 uint32
    type T64 uint64
    type Tstr string
    type Tslice []byte
    
    func (T8) Method1()     {}
    func (T16) Method1()    {}
    func (T32) Method1()    {}
    func (T64) Method1()    {}
    func (Tstr) Method1()   {}
    func (Tslice) Method1() {}
    
    var (
    	e  any
    	e_ any
    	i1 I1
    	i2 I2
    	ts TS
    	tm TM
    	tl TL
    	ok bool
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "TST", argLength: 2, reg: gp2flags, asm: "TST", typ: "Flags", commutative: true},   // arg0 & arg1 compare to 0
    		{name: "TSTconst", argLength: 1, reg: gp1flags, asm: "TST", aux: "Int64", typ: "Flags"},   // arg0 & auxInt compare to 0
    		{name: "TSTW", argLength: 2, reg: gp2flags, asm: "TSTW", typ: "Flags", commutative: true}, // arg0 & arg1 compare to 0, 32 bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/validation_test.go

    					continue
    				}
    				if !tested.Contains(rec) {
    					t.Errorf("CRD does not have a validation test: %v", rec)
    				}
    			}
    
    			for tst := range tested {
    				if _, found := recognized[tst]; !found {
    					t.Errorf("Unrecognized validation test data found: %v", tst)
    				}
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			},
    		},
    	}
    
    	for i := range tests {
    		tst := tests[i]
    		t.Run(tst.desc, func(t *testing.T) {
    			// plug in schemas
    			manifest := strings.NewReplacer(
    				"GLOBAL_SCHEMA", toValidationJSON(tst.globalSchema),
    				"V1BETA1_SCHEMA", toValidationJSON(tst.v1beta1Schema),
    				"V1_SCHEMA", toValidationJSON(tst.v1Schema),
    				"PRESERVE_UNKNOWN_FIELDS", tst.preserveUnknownFields,
    			).Replace(tmpl)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	if err := yaml.Unmarshal([]byte(metaDefaultingFooInstance), &returnedFoo.Object); err != nil {
    		t.Fatal(err)
    	}
    	for _, tst := range tests {
    		if tst.value != nil {
    			if err := unstructured.SetNestedField(returnedFoo.Object, tst.value, tst.path...); err != nil {
    				t.Fatal(err)
    			}
    		}
    	}
    	returnedFoo, err = fooClient.Create(context.TODO(), returnedFoo, metav1.CreateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_vet.txt

    }
    -- vetfail/p2/p2.go --
    package p2
    
    import _ "m/vetfail/p1"
    
    func F() {
    }
    -- vetfail/p2/p2_test.go --
    package p2
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/anames.go

    package arm
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "AND",
    	"EOR",
    	"SUB",
    	"RSB",
    	"ADD",
    	"ADC",
    	"SBC",
    	"RSC",
    	"TST",
    	"TEQ",
    	"CMP",
    	"CMN",
    	"ORR",
    	"BIC",
    	"MVN",
    	"BEQ",
    	"BNE",
    	"BCS",
    	"BHS",
    	"BCC",
    	"BLO",
    	"BMI",
    	"BPL",
    	"BVS",
    	"BVC",
    	"BHI",
    	"BLS",
    	"BGE",
    	"BLT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 16 15:58:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top