Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 434 for dofiles (1.61 sec)

  1. src/runtime/env_plan9.go

    		env := make([]byte, len(name)+r)
    		copy(env, name)
    		copy(env[len(name):], buf[:r])
    		envs = append(envs, string(env))
    	})
    }
    
    // dofiles reads the directory opened with file descriptor fd, applying function f
    // to each filename in it.
    //
    //go:nosplit
    func dofiles(dirfd int32, f func([]byte)) {
    	dirbuf := new([dirBufSize]byte)
    
    	var off int64 = 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vet.go

    		if err != nil {
    			base.Errorf("%v", err)
    			continue
    		}
    		if len(ptest.GoFiles) == 0 && len(ptest.CgoFiles) == 0 && pxtest == nil {
    			base.Errorf("go: can't vet %s: no Go files in %s", p.ImportPath, p.Dir)
    			continue
    		}
    		if len(ptest.GoFiles) > 0 || len(ptest.CgoFiles) > 0 {
    			root.Deps = append(root.Deps, b.VetAction(work.ModeBuild, work.ModeBuild, ptest))
    		}
    		if pxtest != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/security/apparmor/testdata/profiles

    Tim St. Clair <******@****.***> 1469837612 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 17:31:25 UTC 2016
    - 978 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_build_tags.txt

    # golang.org/issue/24053.
    
    env GO111MODULE=on
    
    cd x
    ! go list -f {{.GoFiles}}
    stderr 'build constraints exclude all Go files'
    
    go list -f {{.GoFiles}} -tags tag1
    stdout '\[x.go\]'
    
    go list -f {{.GoFiles}} -tags tag2
    stdout '\[y\.go\]'
    
    go list -f {{.GoFiles}} -tags 'tag1 tag2'
    stdout '\[x\.go y\.go\]'
    
    go list -f {{.GoFiles}} -tags tag1,tag2 # commas allowed as of Go 1.13
    stdout '\[x\.go y\.go\]'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:25:19 UTC 2019
    - 538 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_constraints.txt

    # Disabling cgo should exclude cgo files and their imports.
    env CGO_ENABLED=0
    go list -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout 'empty.go suffix_linux.go tag.go'
    go list -f '{{range .CgoFiles}}{{.}} {{end}}'
    ! stdout .
    go list -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^suffix tag $'
    
    # Changing OS should exclude linux sources.
    env GOOS=darwin
    go list -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go $'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_load_err.txt

    # go list -e should include files with errors in GoFiles, TestGoFiles, and
    # other lists, assuming they match constraints.
    # Verifies golang.org/issue/39986
    go list -e -f '{{range .GoFiles}}{{.}},{{end}}' ./scan
    stdout '^good.go,scan.go,$'
    
    go list -e -f '{{range .GoFiles}}{{.}},{{end}}' ./multi
    stdout '^a.go,b.go,$'
    
    go list -e -f '{{range .GoFiles}}{{.}},{{end}}' ./constraint
    stdout '^good.go,$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

                builder.applicationClasspath(classPathRegistry.getClassPath("MINIMUM_WORKER_RUNTIME").getAsFiles());
                builder.useApplicationClassloaderOnly();
                builder.applicationClasspath(toFiles(flatClassLoaderStructure.getSpec()));
            } else {
                builder.applicationClasspath(classPathRegistry.getClassPath("CORE_WORKER_RUNTIME").getAsFiles());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_json_fields.txt

    stdout '"XTestEmbedPatterns": \['
    # Test -json=<field> with *EmbedFiles fails due to broken file reference.
    ! go list -json=EmbedFiles
    stderr 'no matching files found'
    ! go list -json=TestEmbedFiles
    stderr 'no matching files found'
    ! go list -json=XTestEmbedFiles
    stderr 'no matching files found'
    cd ..
    
    [!git] skip
    
    # Test -json=<field> without Stale skips computing buildinfo
    cd repo
    exec git init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. releasenotes/notes/helm-profiles.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 47838
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 256 bytes
    - Viewed (0)
  10. hack/grab-profiles.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script grabs profiles from running components.
    # Usage: `hack/grab-profiles.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    function grab_profiles_from_component {
      local requested_profiles=$1
      local mem_pprof_flags=$2
      local binary=$3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top