Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for 314159 (0.37 sec)

  1. src/internal/types/testdata/check/const0.go

    	a1, a2, a3 = 7, 3.1415926, "foo"
    	b1, b2, b3 = b3, b1, 42
    	c1, c2, c3  /* ERROR "missing init expr for c3" */ = 1, 2
    	d1, d2, d3 = 1, 2, 3, 4 /* ERROR "extra init expr 4" */
    	_p0 = assert(a1 == 7)
    	_p1 = assert(a2 == 3.1415926)
    	_p2 = assert(a3 == "foo")
    	_p3 = assert(b1 == 42)
    	_p4 = assert(b2 == 42)
    	_p5 = assert(b3 == 42)
    )
    
    func _() {
    	const (
    		a1, a2, a3 = 7, 3.1415926, "foo"
    		b1, b2, b3 = b3, b1, 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    static void segvHandler(int signo, siginfo_t* info, void* ctxt) {
    	sigset_t mask;
    	int i;
    
    	// Call an arbitrary function that requires the stack to be properly aligned.
    	callWithVarargs("dummy arg", 3.1415);
    
    	if (sigemptyset(&mask) < 0) {
    		die("sigemptyset");
    	}
    	if (sigaddset(&mask, SIGSEGV) < 0) {
    		die("sigaddset");
    	}
    	i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
    	if (i != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/image/ycbcr_test.go

    	rects := []Rectangle{
    		Rect(0, 0, 16, 16),
    		Rect(1, 0, 16, 16),
    		Rect(0, 1, 16, 16),
    		Rect(1, 1, 16, 16),
    		Rect(1, 1, 15, 16),
    		Rect(1, 1, 16, 15),
    		Rect(1, 1, 15, 15),
    		Rect(2, 3, 14, 15),
    		Rect(7, 0, 7, 16),
    		Rect(0, 8, 16, 8),
    		Rect(0, 0, 10, 11),
    		Rect(5, 6, 16, 16),
    		Rect(7, 7, 8, 8),
    		Rect(7, 8, 8, 9),
    		Rect(8, 7, 9, 8),
    		Rect(8, 8, 9, 9),
    		Rect(7, 7, 17, 17),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    Mensch  zu bekommen. Die Führung geht damit verbundenen Fragen im Kontext der 
    Ausstellung nach. 
    Folgendes Programm ist geplant:
    15.45 Treffen (pünktlich!) im Museum Berggruen an der Kasse , Schloßstraße 1, 14059 Berlin.
    Die Führung findet ausschließlich in deutscher Sprache statt und dauert ca. 2 Stunden.
    Die Eigenbeteiligung beträgt 3,-- €/Person (incl. Eintritt und Führung)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer_test.go

    	}
    	return io.Discard
    }
    
    func dup(s string) [2]string { return [2]string{s, s} }
    
    var exprTests = [][2]string{
    	// basic type literals
    	dup("x"),
    	dup("true"),
    	dup("42"),
    	dup("3.1415"),
    	dup("2.71828i"),
    	dup(`'a'`),
    	dup(`"foo"`),
    	dup("`bar`"),
    	dup("any"),
    
    	// func and composite literals
    	dup("func() {}"),
    	dup("[]int{}"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. src/internal/coverage/test/counter_test.go

    		for _, v := range fp.Counters {
    			if v != 0 {
    				return false
    			}
    		}
    		return true
    	}
    
    	funcs := []decodecounter.FuncPayload{
    		mkfunc(0, 0, []uint32{13, 14, 15}),
    		mkfunc(0, 1, []uint32{16, 17}),
    		mkfunc(1, 0, []uint32{18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 976543, 7}),
    	}
    	writeVisitor := &ctrVis{funcs: funcs}
    
    	for kf, flav := range flavors {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/nodes_test.go

    	// The position of an expression is the position
    	// of the left-most token that identifies the
    	// kind of expression.
    	{"Name", `@x`},
    
    	{"BasicLit", `@0`},
    	{"BasicLit", `@0x123`},
    	{"BasicLit", `@3.1415`},
    	{"BasicLit", `@.2718`},
    	{"BasicLit", `@1i`},
    	{"BasicLit", `@'a'`},
    	{"BasicLit", `@"abc"`},
    	{"BasicLit", "@`abc`"},
    
    	{"CompositeLit", `@{}`},
    	{"CompositeLit", `T@{}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

            notation         | rejects                      | selected | requiresMetadata
            '1+'             | ['1.4', '1.5']               | 3        | false
            '1.+'            | ['1.4', '1.5']               | 3        | false
            '[1.0,)'         | ['1.4', '1.5']               | 3        | false
            'latest.release' | ['1.4', '1.5']               | 3        | true
    
            '1+'             | ['[1.2,)', '1.5']            | 1        | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_unix_test.go

    func TestFcntlFlock(t *testing.T) {
    	if runtime.GOOS == "ios" {
    		t.Skip("skipping; no child processes allowed on iOS")
    	}
    	flock := syscall.Flock_t{
    		Type:  syscall.F_WRLCK,
    		Start: 31415, Len: 271828, Whence: 1,
    	}
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "" {
    		// parent
    		tempDir := t.TempDir()
    		name := filepath.Join(tempDir, "TestFcntlFlock")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  10. src/math/big/floatconv_test.go

    		prec   int
    		want   string
    	}{
    		{0, 'f', 0, "0"},
    		{math.Copysign(0, -1), 'f', 0, "-0"},
    		{1, 'f', 0, "1"},
    		{-1, 'f', 0, "-1"},
    
    		{0.001, 'e', 0, "1e-03"},
    		{0.459, 'e', 0, "5e-01"},
    		{1.459, 'e', 0, "1e+00"},
    		{2.459, 'e', 1, "2.5e+00"},
    		{3.459, 'e', 2, "3.46e+00"},
    		{4.459, 'e', 3, "4.459e+00"},
    		{5.459, 'e', 4, "5.4590e+00"},
    
    		{0.001, 'f', 0, "0"},
    		{0.459, 'f', 0, "0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
Back to top