Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 266 for findAny (0.19 sec)

  1. src/crypto/x509/root_wasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasm
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{}
    
    // Possible directories with certificate files; all will be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 373 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    	defer f.Cache.freeBoolSlice(visited)
    	sawIrred := false
    
    	if f.pass.debug > 2 {
    		fmt.Printf("loop finding in %s\n", f.Name)
    	}
    
    	// Reducible-loop-nest-finding.
    	for _, b := range po {
    		if f.pass != nil && f.pass.debug > 3 {
    			fmt.Printf("loop finding at %s\n", b)
    		}
    
    		var innermost *loop // innermost header reachable from this block
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. src/crypto/x509/root_solaris.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/etc/certs/ca-certificates.crt",     // Solaris 11.2+
    	"/etc/ssl/certs/ca-certificates.crt", // Joyent SmartOS
    	"/etc/ssl/cacert.pem",                // OmniOS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 538 bytes
    - Viewed (0)
  4. src/crypto/x509/root_aix.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/var/ssl/certs/ca-bundle.crt",
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/var/ssl/certs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 410 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_replace.txt

    stdout 'v3.0.0'
    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    # Since all dependencies are replaced, 'go mod vendor' should not
    # have to download anything from the network.
    go mod vendor
    ! stderr 'downloading'
    ! stderr 'finding'
    
    # After vendoring, we expect to see the replacement in the vendor directory,
    # without attempting to look up the non-replaced version.
    cmp vendor/rsc.io/quote/v3/quote.go local/not-rsc.io/quote/v3/quote.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. src/internal/diff/testdata/triv.txt

    Another example from Hunt and McIlroy,
    “An Algorithm for Differential File Comparison.”
    https://www.cs.dartmouth.edu/~doug/diff.pdf
    
    Anchored diff gives up on finding anything,
    since there are no unique lines.
    
    -- old --
    a
    b
    c
    a
    b
    b
    a
    -- new --
    c
    a
    b
    a
    b
    c
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,7 +1,6 @@
    -a
    -b
    -c
    -a
    -b
    -b
    -a
    +c
    +a
    +b
    +a
    +b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 356 bytes
    - Viewed (0)
  7. src/crypto/x509/root_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package x509
    
    import (
    	"os"
    )
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/sys/lib/tls/ca.pem",
    }
    
    func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 828 bytes
    - Viewed (0)
  8. src/crypto/x509/root_bsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd || netbsd || openbsd
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/usr/local/etc/ssl/cert.pem",            // FreeBSD
    	"/etc/ssl/cert.pem",                      // OpenBSD
    	"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 748 bytes
    - Viewed (0)
  9. .mailmap

    # Generate CONTRIBUTORS.md: contributors.sh
    
    # Tip for finding duplicates (besides scanning the output of CONTRIBUTORS.md for name
    # duplicates that aren't also email duplicates): scan the output of:
    #   git log --format='%aE - %aN' | sort -uf
    #
    # For explanation on this file format: man git-shortlog
    
    Anand Babu (AB) Periasamy <******@****.***> Anand Babu (AB) Periasamy <******@****.***>
    Anand Babu (AB) Periasamy <******@****.***> <******@****.***>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 09 18:39:42 UTC 2019
    - 835 bytes
    - Viewed (0)
  10. docs/de/docs/learn/index.md

    # Lernen
    
    Hier finden Sie die einführenden Kapitel und Tutorials zum Erlernen von **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 227 bytes
    - Viewed (0)
Back to top