Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for Liles (0.72 sec)

  1. src/compress/gzip/issue14937_test.go

    		}
    		t.Fatal("error collecting list of .gz files in GOROOT: ", err)
    	}
    	if len(files) == 0 {
    		t.Fatal("expected to find some .gz files under GOROOT")
    	}
    	for _, path := range files {
    		checkZeroMTime(t, path)
    	}
    }
    
    func checkZeroMTime(t *testing.T, path string) {
    	f, err := os.Open(path)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	defer f.Close()
    	gz, err := NewReader(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/internal/cov/readcovdata.go

    // reading coverage data files in a structured way. Clients create a
    // CovDataReader to process a given collection of coverage data file
    // directories, then pass in a visitor object with methods that get
    // invoked at various important points. CovDataReader is intended
    // to facilitate common coverage data file operations such as
    // merging or intersecting data files, analyzing data files, or
    // dumping data files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/addmod.go

    //
    // Usage:
    //
    //	go run addmod.go path@version...
    //
    // It should only be used for very small modules - we do not want to check
    // very large files into testdata/mod.
    //
    // It is acceptable to edit the archive afterward to remove or shorten files.
    // See mod/README for more information.
    package main
    
    import (
    	"bytes"
    	"cmd/go/internal/str"
    	"flag"
    	"fmt"
    	"internal/txtar"
    	"io/fs"
    	"log"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. misc/ios/detect.go

    	lines := getLines(cmd)
    
    	var files []string
    	for _, line := range lines {
    		if len(line) == 0 {
    			continue
    		}
    		xmlLines := getLines(parseMobileProvision(string(line)))
    		matches := 0
    		for _, udid := range udids {
    			for _, xmlLine := range xmlLines {
    				if bytes.Contains(xmlLine, udid) {
    					matches++
    				}
    			}
    		}
    		if matches == len(udids) {
    			files = append(files, string(line))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/crypto/x509/root_linux.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
    
    import "internal/goos"
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/etc/ssl/certs/ca-certificates.crt",                // Debian/Ubuntu/Gentoo etc.
    	"/etc/pki/tls/certs/ca-bundle.crt",                  // Fedora/RHEL 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/gover.go

    // The distinction is important because the relative ordering is
    //
    //	1.21 < 1.21rc1 < 1.21.0
    //
    // meaning that Go 1.21rc1 and Go 1.21.0 will both handle go.mod files that
    // say "go 1.21", but Go 1.21rc1 will not handle files that say "go 1.21.0".
    func IsLang(x string) bool {
    	return gover.IsLang(x)
    }
    
    // Lang returns the Go language version. For example, Lang("1.2.3") == "1.2".
    func Lang(x string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/init.go

    must not already exist.
    
    Init accepts one optional argument, the module path for the new module. If the
    module path argument is omitted, init will attempt to infer the module path
    using import comments in .go files, vendoring tool configuration files (like
    Gopkg.lock), and the current directory (if in GOPATH).
    
    See https://golang.org/ref/mod#go-mod-init for more about 'go mod init'.
    `,
    	Run: runInit,
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/debug/dwarf/open.go

    Package dwarf provides access to DWARF debugging information loaded from
    executable files, as defined in the DWARF 2.0 Standard at
    http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
    
    # Security
    
    This package is not designed to be hardened against adversarial inputs, and is
    outside the scope of https://go.dev/security/policy. In particular, only basic
    validation is done when parsing object files. As such, care should be taken when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/empty_test.go

    // Copyright 2022 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.
    
    // All of the actual test files have limited build constraints. This file
    // ensures there's at least one test file on every platform.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 19:43:56 UTC 2023
    - 320 bytes
    - Viewed (0)
  10. src/cmd/internal/cov/covcmd/cmddefs.go

    // command to the cover command during "go build -cover" runs. The
    // Go command creates and fills in a struct as below, then passes
    // file containing the encoded JSON for the struct to the "cover"
    // tool when instrumenting the source files in a Go package.
    type CoverPkgConfig struct {
    	// File into which cmd/cover should emit summary info
    	// when instrumentation is complete.
    	OutConfig string
    
    	// Import path for the package being instrumented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top