Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 335 for 118 (0.07 sec)

  1. releasenotes/notes/drop-legacy-fsgroup-injection.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 21:39:30 UTC 2023
    - 227 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_unsupported.txt

    [fuzz] skip
    
    ! go test -fuzz=. -fuzztime=1x
    ! stdout .
    stderr '^-fuzz flag is not supported on '$GOOS'/'$GOARCH'$'
    
    -- go.mod --
    module example
    
    go 1.18
    -- fuzz_test.go --
    package example
    
    import "testing"
    
    func FuzzTrivial(f *testing.F) {
    	f.Fuzz(func(t *testing.T, _ []byte) {})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:02 UTC 2021
    - 283 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_single_error.txt

    # go test ./... with a bad package should report the error once (#44624).
    ! go test ./...
    stderr -count=1 undefined
    
    -- go.mod --
    module example.com
    
    go 1.18
    -- a/a.go --
    package a
    
    import "example.com/b"
    -- b/b.go --
    package b
    
    var X = Y
    -- b/b_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 18 22:40:42 UTC 2021
    - 267 bytes
    - Viewed (0)
  4. releasenotes/notes/27606.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 27606
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:21:40 UTC 2020
    - 243 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/get_404_meta.txt

    [!net:bazil.org] skip
    [!git] skip
    
    env GONOSUMDB=bazil.org,github.com,golang.org
    env GO111MODULE=on
    env GOPROXY=direct
    go get bazil.org/fuse/fs/fstestutil
    
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 278 bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue46090.go

    // Copyright 2020 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.
    
    // The predeclared type comparable is not visible before Go 1.18.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 307 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_race_tag.txt

    # Tests Issue #54468
    
    [short] skip 'links a test binary'
    [!race] skip
    
    go mod tidy
    go test -c -o=$devnull -race .
    
    ! stderr 'cannot find package'
    
    -- go.mod --
    module testrace
    
    go 1.18
    
    require rsc.io/sampler v1.0.0
    -- race_test.go --
    //go:build race
    
    package testrace
    
    import (
            "testing"
    
            _ "rsc.io/sampler"
    )
    
    func TestRaceTag(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:43:59 UTC 2022
    - 363 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_fallback.txt

    env GOSUMDB=off
    
    go get -x -v golang.org/x/tools/cmd/goimports
    stderr '# get https://proxy.golang.org/golang.org/x/tools/@v/list'
    ! stderr '# get https://golang.org'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 315 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/go118.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.18
    
    package idna
    
    // Transitional processing is disabled by default in Go 1.18.
    // https://golang.org/issue/47510
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 401 bytes
    - Viewed (0)
  10. tests/fuzz/oss_fuzz_build.sh

    cd "${SRC}"/istio
    
    sed -i 's/\"testing\"/\"github.com\/AdamKorcz\/go-118-fuzz-build\/testing\"/g' "${SRC}"/istio/pkg/fuzz/util.go
    
    sed -i 's/out.initJwksResolver()/\/\/out.initJwksResolver()/g' "${SRC}"/istio/pilot/pkg/xds/discovery.go
    # Create empty file that imports "github.com/AdamKorcz/go-118-fuzz-build/testing"
    # This is a small hack to install this dependency, since it is not used anywhere,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top