Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Chalin (0.22 sec)

  1. api/go1.1.txt

    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE = 2
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE_TS = 3
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASE = 1
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_EV = 8
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_MICROSOFT_ROOT = 7
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  2. doc/go_spec.html

    	for i := range src {  // Loop over values received from 'src'.
    		if i%prime != 0 {
    			dst <- i  // Send 'i' to channel 'dst'.
    		}
    	}
    }
    
    // The prime sieve: Daisy-chain filter processes together.
    func sieve() {
    	ch := make(chan int)  // Create a new channel.
    	go generate(ch)       // Start generate() as a subprocess.
    	for {
    		prime := <-ch
    		fmt.Print(prime, "\n")
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	for i := range src {  // Loop over values received from 'src'.
    		if i%prime != 0 {
    			dst <- i  // Send 'i' to channel 'dst'.
    		}
    	}
    }
    
    // The prime sieve: Daisy-chain filter processes together.
    func sieve() {
    	ch := make(chan int)  // Create a new channel.
    	go generate(ch)       // Start generate() as a subprocess.
    	for {
    		prime := <-ch
    		fmt.Print(prime, "\n")
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_AUTHENTICODE_TS ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASE ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_BASIC_CONSTRAINTS ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_EV ideal-int
    pkg syscall (windows-386), const CERT_CHAIN_POLICY_MICROSOFT_ROOT ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. src/cmd/cgo/gcc.go

    		return false
    	}
    	if f := dt.Field[0]; f.Name != "unused" || f.Type.Common().Name != "int" {
    		return false
    	}
    	return true
    }
    
    // baseBadPointerTypedef reports whether the base of a chain of typedefs is a bad typedef
    // as badPointerTypedef reports.
    func (c *typeConv) baseBadPointerTypedef(dt *dwarf.TypedefType) bool {
    	for {
    		if t, ok := dt.Type.(*dwarf.TypedefType); ok {
    			dt = t
    			continue
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. doc/go1.22.html

          The new <a href="/pkg/crypto/x509#CertPool.AddCertWithConstraint"><code>CertPool.AddCertWithConstraint</code></a>
          method can be used to add customized constraints to root certificates to be applied during chain building.
        </p>
    
        <p><!-- https://go.dev/issue/58922, CL 519315-->
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (windows-386), const LAYERED_PROTOCOL = 0
    pkg syscall (windows-386), const LAYERED_PROTOCOL ideal-int
    pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN = 7
    pkg syscall (windows-386), const MAX_PROTOCOL_CHAIN ideal-int
    pkg syscall (windows-386), const NetSetupDomainName = 3
    pkg syscall (windows-386), const NetSetupDomainName ideal-int
    pkg syscall (windows-386), const NetSetupUnjoined = 1
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top