Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 13841 (0.04 sec)

  1. src/cmd/pprof/pprof_test.go

    	case "aix":
    		t.Skipf("skipping on %s, issue 45170", runtime.GOOS)
    	case "ios", "dragonfly", "netbsd", "illumos", "solaris":
    		t.Skipf("skipping on %s, issue 13841", runtime.GOOS)
    	case "openbsd":
    		if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {
    			t.Skipf("skipping on %s/%s, issue 13841", runtime.GOOS, runtime.GOARCH)
    		}
    	}
    }
    
    func mustHaveDisasm(t *testing.T) {
    	switch runtime.GOARCH {
    	case "loong64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_arm.s

    	// starting at 4(R13).
    	MOVW.W	R14, -4(R13)
    
    	// Skip floating point registers if goarmsoftfp!=0.
    	MOVB    runtime·goarmsoftfp(SB), R11
    	CMP     $0, R11
    	BNE     skipfpsave
    	MOVD	F8, (13*4+8*1)(R13)
    	MOVD	F9, (13*4+8*2)(R13)
    	MOVD	F10, (13*4+8*3)(R13)
    	MOVD	F11, (13*4+8*4)(R13)
    	MOVD	F12, (13*4+8*5)(R13)
    	MOVD	F13, (13*4+8*6)(R13)
    	MOVD	F14, (13*4+8*7)(R13)
    	MOVD	F15, (13*4+8*8)(R13)
    
    skipfpsave:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/runtime/sizeclasses.go

    ^uint32(0)/128 + 1, ^uint32(0)/144 + 1, ^uint32(0)/160 + 1, ^uint32(0)/176 + 1, ^uint32(0)/192 + 1, ^uint32(0)/208 + 1, ^uint32(0)/224 + 1, ^uint32(0)/240 + 1, ^uint32(0)/256 + 1, ^uint32(0)/288 + 1, ^uint32(0)/320 + 1, ^uint32(0)/352 + 1, ^uint32(0)/384 + 1, ^uint32(0)/416 + 1, ^uint32(0)/448 + 1, ^uint32(0)/480 + 1, ^uint32(0)/512 + 1, ^uint32(0)/576 + 1, ^uint32(0)/640 + 1, ^uint32(0)/704 + 1, ^uint32(0)/768 + 1, ^uint32(0)/896 + 1, ^uint32(0)/1024 + 1, ^uint32(0)/1152 + 1, ^uint32(0)/1280 + 1, ^uint32(0)/1408...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/dropm.go

    //go:build !plan9 && !windows
    // +build !plan9,!windows
    
    // Test that a sequence of callbacks from C to Go get the same m.
    // This failed to be true on arm and arm64, which was the root cause
    // of issue 13881.
    
    package main
    
    /*
    #include <stddef.h>
    #include <pthread.h>
    
    extern void GoCheckM();
    
    static void* thread(void* arg __attribute__ ((unused))) {
    	GoCheckM();
    	return NULL;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/basic_lstm.mlir

    // CHECK-NEXT:    deprecated_builtin_code: 16,
    // CHECK-NEXT:    version: 2
    // CHECK-NEXT:    builtin_code: LSTM
    // CHECK-NEXT:  } ],
    // CHECK-NEXT:  subgraphs: [ {
    // CHECK-NEXT:    tensors: [ {
    // CHECK-NEXT:      shape: [ 1, 384 ],
    // CHECK-NEXT:      buffer: 1,
    // CHECK-NEXT:      name: "arg0",
    // CHECK-NEXT:      quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      },
    // CHECK-NEXT:      has_rank: true
    // CHECK-NEXT:    }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. src/go/importer/importer.go

    			importer: inst.GetImporter(nil, nil),
    			lookup:   lookup,
    		}
    
    	case "source":
    		if lookup != nil {
    			panic("source importer for custom import path lookup not supported (issue #13847).")
    		}
    
    		return srcimporter.New(&build.Default, fset, make(map[string]*types.Package))
    	}
    
    	// compiler not supported
    	return nil
    }
    
    // For calls [ForCompiler] with a new FileSet.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go

    	if len(nonce) != NonceSize {
    		panic("chacha20poly1305: bad nonce length passed to Open")
    	}
    	if len(ciphertext) < 16 {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > (1<<38)-48 {
    		panic("chacha20poly1305: ciphertext too large")
    	}
    
    	return c.open(dst, nonce, ciphertext, additionalData)
    }
    
    // sliceForAppend takes a slice and a requested number of bytes. It returns a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_switches3(x interface{}) {
    	switch x.(type) {
    	case bool:
    		panic("one")
    	case float32:
    		panic("two")
    	}
    }
    
    // funcflags.go T_switches4 138 0 1
    // Flags FuncPropNeverReturns
    // <endpropsdump>
    // {"Flags":1,"ParamFlags":[0],"ResultFlags":null}
    // <endcallsites>
    // <endfuncpreamble>
    func T_switches4(x int) {
    	switch x {
    	case 1:
    		x++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiationRejected

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 5d 02 00 00  59 03 03 21 15 e1 02 00  |....]...Y..!....|
    00000010  c6 0c e5 3f c9 6f a5 59  38 7e 13 81 1b 26 50 46  |...?.o.Y8~...&PF|
    00000020  bf 2b 95 0c eb a8 bc 72  97 bc 26 20 ad 6b 84 ac  |.+.....r..& .k..|
    00000030  8f 62 26 0b 4b d8 bf 1b  7d a5 27 3b 3e 45 a5 8f  |.b&.K...}.';>E..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-CHACHA20-SHA256

    000002c0  56 f6 14 83 bb 08 d5 3e  ed 22 e1 c5 9c 14 cc de  |V......>."......|
    000002d0  d3 45 e1 0e e3 cb 61 b5  ab f6 03 41 bc 71 5d 17  |.E....a....A.q].|
    000002e0  99 c6 8f 13 41 f8 78 e8  da 3d 40 1c 1a 47 a9 b2  |....A.x..=@..G..|
    000002f0  e7 22 90 2f d8 8f 6f 0d  36 02 b1 36 fa 6d 26 6f  |."./..o.6..6.m&o|
    00000300  82 e2 54 74 a0 26 3c 0c  57 bb d7 01 ff ee 6f 16  |..Tt.&<.W.....o.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top