Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for Long (0.1 sec)

  1. src/cmd/cgo/internal/test/testx.go

    // in ms.
    long long twoSleep(int);
    
    // issue 3775
    void lockOSThreadC(void);
    int usleep(unsigned usec);
    
    // issue 4054 part 2 - part 1 in test.go
    typedef enum {
    	A = 0,
    	B,
    	C,
    	D,
    	E,
    	F,
    	G,
    	H,
    	II,
    	J,
    } issue4054b;
    
    // issue 5548
    
    extern int issue5548_in_c(void);
    
    // issue 6833
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/bufio/bufio.go

    // [Reader.ReadBytes]('\n') or [Reader.ReadString]('\n') instead or use a [Scanner].
    //
    // ReadLine tries to return a single line, not including the end-of-line bytes.
    // If the line was too long for the buffer then isPrefix is set and the
    // beginning of the line is returned. The rest of the line will be returned
    // from future calls. isPrefix will be false when returning the last fragment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    				// long paths just fine, and we expect people to use 'go clean' to
    				// manipulate the module cache, so it should be harmless to set here,
    				// and in some cases may be necessary in order to download modules with
    				// long branch names.
    				//
    				// See https://github.com/git-for-windows/git/wiki/Git-cannot-create-a-file-or-directory-with-a-long-path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/inl_test.go

    		m := re.FindStringSubmatch(line)
    		if m != nil {
    			rv[m[1]] = struct{}{}
    		}
    	}
    	return rv
    }
    
    func TestIssue56044(t *testing.T) {
    	if testing.Short() {
    		t.Skipf("skipping test: too long for short mode")
    	}
    	if !goexperiment.CoverageRedesign {
    		t.Skipf("skipping new coverage tests (experiment not enabled)")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    		x, y = y, x
    	}
    
    	// Unification will fail if we match a defined type against a type literal.
    	// If we are matching types in an assignment, at the top-level, types with
    	// the same type structure are permitted as long as at least one of them
    	// is not a defined type. To accommodate for that possibility, we continue
    	// unification with the underlying type of a defined type if the other type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/ptr_test.go

    		fail: true,
    	},
    	{
    		// Check a pointer to a union if the union has any
    		// pointer fields.
    		name:    "union1",
    		c:       `typedef union { char **p; unsigned long i; } u29; void f29(u29 *pu) {}`,
    		imports: []string{"unsafe"},
    		body:    `var b C.char; p := &b; C.f29((*C.u29)(unsafe.Pointer(&p)))`,
    		fail:    true,
    	},
    	{
    		// Don't check a pointer to a union if the union does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/386Ops.go

    //    filled by sign-extending the used portion.  Users of AuxInt which interpret
    //    AuxInt as unsigned (e.g. shifts) must be careful.
    
    // Suffixes encode the bit width of various instructions.
    // L (long word) = 32 bit
    // W (word)      = 16 bit
    // B (byte)      = 8 bit
    
    // copied from ../../x86/reg.go
    var regNames386 = []string{
    	"AX",
    	"CX",
    	"DX",
    	"BX",
    	"SP",
    	"BP",
    	"SI",
    	"DI",
    	"X0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    // issue 22958
    
    typedef struct {
    	unsigned long long f8  : 8;
    	unsigned long long f16 : 16;
    	unsigned long long f24 : 24;
    	unsigned long long f32 : 32;
    	unsigned long long f40 : 40;
    	unsigned long long f48 : 48;
    	unsigned long long f56 : 56;
    	unsigned long long f64 : 64;
    } issue22958Type;
    
    // issue 23356
    int a(void) { return 5; };
    int r(void) { return 3; };
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    	fmt.Fprintf(w, "\tNumStmt   [%d]uint16\n", len(f.blocks))
    	fmt.Fprintf(w, "} {\n")
    
    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tPos: [3 * %d]uint32{\n", len(f.blocks))
    
    	// A nice long list of positions. Each position is encoded as follows to reduce size:
    	// - 32-bit starting line number
    	// - 32-bit ending line number
    	// - (16 bit ending column number << 16) | (16-bit starting column number).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    			if fn == nil || fn.Nname == nil {
    				return "<nil>"
    			}
    			if fn.Sym().Pkg == types.LocalPkg {
    				n = "ยท" + fn.Sym().Name
    			} else {
    				n = ir.PkgFuncName(fn)
    			}
    			// don't try to print super-long names
    			if len(n) <= 64 {
    				return n
    			}
    			return n[:32] + "..." + n[len(n)-32:len(n)]
    		}
    
    		if len(sl) != 0 {
    			fmt.Fprintf(os.Stdout, "# scores for package %s\n", types.LocalPkg.Path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top