Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Sait (0.5 sec)

  1. misc/linkcheck/linkcheck.go

    			log.Printf(" url %s has #%s", url, id)
    		}
    		fragExists[urlFrag{url, id}] = true
    	}
    	return nil
    }
    
    func main() {
    	flag.Parse()
    
    	go crawlLoop()
    	crawl(*root, "")
    
    	wg.Wait()
    	close(urlq)
    	for uf, needers := range neededFrags {
    		if !fragExists[uf] {
    			problems = append(problems, fmt.Sprintf("Missing fragment for %+v from %v", uf, needers))
    		}
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 06 15:53:04 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_KSEM_UNLINK = 406 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_UNLINK ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_WAIT = 402 #53466
    pkg syscall (freebsd-riscv64), const SYS_KSEM_WAIT ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_KTIMER_CREATE = 235 #53466
    pkg syscall (freebsd-riscv64), const SYS_KTIMER_CREATE ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue18146.go

    				time.Sleep(time.Millisecond)
    				continue
    			}
    
    			t.Error(err)
    			return
    		}
    		cmds = append(cmds, cmd)
    	}
    
    	failures := 0
    	for _, cmd := range cmds {
    		err := cmd.Wait()
    		if err == nil {
    			continue
    		}
    
    		t.Errorf("syscall.Exec failed: %v\n%s", err, cmd.Stdout)
    		failures++
    	}
    
    	if failures > 0 {
    		t.Logf("Failed %v of %v attempts.", failures, len(cmds))
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Sep 05 23:35:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/api/api_test.go

    	for _, context := range contexts {
    		context := context
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			_ = NewWalker(context, filepath.Join(testenv.GOROOT(nil), "src"))
    		}()
    	}
    	wg.Wait()
    })
    
    func TestIssue21181(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping with -short")
    	}
    	if *flagCheck {
    		// slow, not worth repeating in -check
    		t.Skip("skipping with -check set")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 17:31:12 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    linkage to the desired libraries. The main function is provided by
    _cgo_main.c:
    
    	int main() { return 0; }
    	void crosscall2(void(*fn)(void*), void *a, int c, uintptr_t ctxt) { }
    	uintptr_t _cgo_wait_runtime_init_done(void) { return 0; }
    	void _cgo_release_context(uintptr_t ctxt) { }
    	char* _cgo_topofstack(void) { return (char*)0; }
    	void _cgo_allocate(void *a, int c) { }
    	void _cgo_panic(void *a, int c) { }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    immediately, yielding the element type's <a href="#The_zero_value">zero value</a>
    after any previously sent values have been received.
    </p>
    
    <pre>
    v1 := &lt;-ch
    v2 = &lt;-ch
    f(&lt;-ch)
    &lt;-strobe  // wait until clock pulse and discard received value
    </pre>
    
    <p>
    A receive expression used in an <a href="#Assignments">assignment</a> or initialization of the special form
    </p>
    
    <pre>
    x, ok = &lt;-ch
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK_ALL ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_UNPARK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT = 312
    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAIT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP = 315
    pkg syscall (netbsd-arm64-cgo), const SYS__LWP_WAKEUP ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_MADVISE = 75
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (windows-386), const USAGE_MATCH_TYPE_OR ideal-int
    pkg syscall (windows-386), const WAIT_ABANDONED ideal-int
    pkg syscall (windows-386), const WAIT_FAILED ideal-int
    pkg syscall (windows-386), const WAIT_OBJECT_0 ideal-int
    pkg syscall (windows-386), const WAIT_TIMEOUT ideal-int
    pkg syscall (windows-386), const WSADESCRIPTION_LEN ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SEM_UNLINK ideal-int
    pkg syscall (darwin-arm64), const SYS_SEM_WAIT = 271
    pkg syscall (darwin-arm64), const SYS_SEM_WAIT ideal-int
    pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL = 420
    pkg syscall (darwin-arm64), const SYS_SEM_WAIT_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SENDFILE = 337
    pkg syscall (darwin-arm64), const SYS_SENDFILE ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_KSEM_UNLINK = 406
    pkg syscall (freebsd-arm64), const SYS_KSEM_UNLINK ideal-int
    pkg syscall (freebsd-arm64), const SYS_KSEM_WAIT = 402
    pkg syscall (freebsd-arm64), const SYS_KSEM_WAIT ideal-int
    pkg syscall (freebsd-arm64), const SYS_KTIMER_CREATE = 235
    pkg syscall (freebsd-arm64), const SYS_KTIMER_CREATE ideal-int
    pkg syscall (freebsd-arm64), const SYS_KTIMER_DELETE = 236
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top