Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 222 for findMin (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/de/docs/tutorial/static-files.md

    Weitere Informationen hierzu finden Sie im [Handbuch für fortgeschrittene Benutzer](../advanced/index.md){.internal-link target=_blank}.
    
    ## Einzelheiten
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/many-start-stop.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests simply starting and stopping tracing multiple times.
    //
    // This is useful for finding bugs in trace state reset.
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    )
    
    func main() {
    	// Trace a few times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Comparators.java

        return least(k, comparator.reversed());
      }
    
      /**
       * Returns the minimum of the two values. If the values compare as 0, the first is returned.
       *
       * <p>The recommended solution for finding the {@code minimum} of some values depends on the type
       * of your data and the number of elements you have. Read more in the Guava User Guide article on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FilesFinder.java

     * limitations under the License.
     */
    
    package org.gradle.cache.internal;
    
    import java.io.File;
    import java.io.FileFilter;
    
    /**
     * Encapsulates a criteria for finding files.
     */
    public interface FilesFinder {
        /**
         * Find files according to this finder's criteria within the supplied base
         * directory that pass the supplied {@link FileFilter}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1002 bytes
    - Viewed (0)
Back to top