Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for startup (0.18 sec)

  1. misc/ios/go_ios_exec.go

    			time.Sleep(5 * time.Second)
    			continue
    		}
    		out, err := runLLDB("remote-ios", appdir, deviceapp, args)
    		// If the program was not started it can be retried without papering over
    		// real test failures.
    		started := bytes.HasPrefix(out, []byte("lldb: running program"))
    		if started || err == nil || attempt == 5 {
    			return err
    		}
    		// Sometimes, the app was not yet ready to launch or the device path was
    		// stale. Retry.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips.s

    	//
    	// store floats
    	//
    	//	LMOVW freg ',' addr
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVD	F1, foo<>+3(SB)
    	MOVD	F1, 16(R2)
    	MOVD	F1, (R2)
    
    	//
    	// floating point status
    	//
    	//	LMOVW fpscr ',' freg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	FCR0, R1
    
    	//	LMOVW freg ','  fpscr
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	R1, FCR0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  3. doc/go_mem.html

    <code>q</code>'s <code>init</code> functions happens before the start of any of <code>p</code>'s.
    </p>
    
    <p class="rule">
    The completion of all <code>init</code> functions is synchronized before
    the start of the function <code>main.main</code>.
    </p>
    
    <h3 id="go">Goroutine creation</h3>
    
    <p class="rule">
    The <code>go</code> statement that starts a new goroutine
    is synchronized before the start of the goroutine's execution.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    		return fmt.Errorf("%v: %w", cmd, err)
    	}
    	goVersion := string(out)
    
    	// Also known by cmd/dist. The bootstrap command deletes the file.
    	statPath := filepath.Join(os.TempDir(), "go_android_exec-adb-sync-status")
    	stat, err := os.OpenFile(statPath, os.O_CREATE|os.O_RDWR, 0666)
    	if err != nil {
    		return err
    	}
    	defer stat.Close()
    	// Serialize check and copying.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/api/main_test.go

    	}
    	minor := strings.TrimSuffix(strings.TrimPrefix(name, "go1."), ".txt")
    	n, err := strconv.Atoi(minor)
    	if err != nil {
    		log.Fatalf("unexpected api file: %v", name)
    	}
    	return n >= 19 // started tracking approvals in Go 1.19
    }
    
    func (w *Walker) collectDeprecated() {
    	isDeprecated := func(doc *ast.CommentGroup) bool {
    		if doc != nil {
    			for _, c := range doc.List {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/lex/lex.go

    	ROT                                   // @> Used on ARM for shift type 4, rotate right.
    	Include                               // included file started here
    	BuildComment                          // //go:build or +build comment
    	macroName                             // name of macro that should not be expanded
    )
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    start:
    	// Unprivileged ISA
    
    	// 2.4: Integer Computational Instructions
    
    	ADDI	$2047, X5				// 9382f27f
    	ADDI	$-2048, X5				// 93820280
    	ADDI	$2048, X5				// 9382024093820240
    	ADDI	$-2049, X5				// 938202c09382f2bf
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (1)
  8. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VUSRA	$0, V7.D2, V8.D2                                 // ERROR "shift out of range"
    	CASPD	(R3, R4), (R2), (R8, R9)                         // ERROR "source register pair must start from even register"
    	CASPD	(R2, R3), (R2), (R9, R10)                        // ERROR "destination register pair must start from even register"
    	CASPD	(R2, R4), (R2), (R8, R9)                         // ERROR "source register pair must be contiguous"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  9. api/go1.21.txt

    pkg crypto/tls, type QUICSessionTicketOptions struct, EarlyData bool #60107
    pkg crypto/tls, method (*QUICConn) SetTransportParameters([]uint8) #44886
    pkg crypto/tls, method (*QUICConn) Start(context.Context) error #44886
    pkg crypto/tls, method (QUICEncryptionLevel) String() string #44886
    pkg crypto/tls, method (*SessionState) Bytes() ([]uint8, error) #60105
    pkg crypto/tls, type AlertError uint8 #44886
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Timex struct, Shift int32
    pkg syscall (linux-arm-cgo), type Timex struct, Stabil int32
    pkg syscall (linux-arm-cgo), type Timex struct, Status int32
    pkg syscall (linux-arm-cgo), type Timex struct, Stbcnt int32
    pkg syscall (linux-arm-cgo), type Timex struct, Tai int32
    pkg syscall (linux-arm-cgo), type Timex struct, Tick int32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top