Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,192 for Example (0.14 sec)

  1. src/cmd/go/testdata/script/mod_go_version_missing.txt

    
    -- go.mod --
    module example.com/m
    
    require example.com/dep v0.1.0
    
    replace (
    	example.com/dep v0.1.0 => ./dep
    	example.com/testdep v0.1.0 => ./testdep
    )
    -- go.mod.untidy --
    module example.com/m
    
    go $goversion
    
    require example.com/dep v0.1.0
    
    require example.com/testdep v0.1.0 // indirect
    
    replace (
    	example.com/dep v0.1.0 => ./dep
    	example.com/testdep v0.1.0 => ./testdep
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    stderr '^go: example\.net/m imports\n\texample\.net/x: package example\.net/x provided by example\.net/x at latest version v0\.1\.0 but not at required version v0\.2\.0-pre$'
    
    go get example.net/x@v0.1.0 example.net/y@v0.1.0
    go mod tidy
    cmp go.mod go.mod.postget-117
    
    
    -- go.mod --
    module example.net/m
    
    go 1.16
    
    replace (
    	example.net/x v0.1.0 => ./x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_auto.txt

    example.com/version
    -- $WORK/modules-bad-1.13.txt --
    # example.com/printversion v1.1.0
    example.com/printversion
    # example.com/version v1.1.0
    example.com/version
    -- $WORK/auto/vendor/example.com/printversion/go.mod --
    module example.com/printversion
    
    require example.com/version v1.0.0
    replace example.com/version v1.0.0 => ../oops v0.0.0
    exclude example.com/version v1.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_load_badchain.txt

    	        but was required as: example.com/badchain/c
    -- list-expected --
    go: example.com/badchain/a@v1.1.0 requires
    	example.com/badchain/b@v1.1.0 requires
    	example.com/badchain/c@v1.1.0: parsing go.mod:
    	module declares its path as: badchain.example.com/c
    	        but was required as: example.com/badchain/c
    -- list-missing-expected --
    go: finding module for package example.com/badchain/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_replaced.txt

    cp go.mod.orig go.mod
    
    ! go list example
    stderr '^package example is not in std \(.*\)$'
    ! go get example
    stderr '^go: malformed module path "example": missing dot in first path element$'
    
    go mod edit -replace example@v0.1.0=./example
    
    ! go list example
    stderr '^module example provides package example and is replaced but not required; to add it:\n\tgo get example@v0.1.0$'
    
    go get example
    go list -m example
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics_test.go

                apiserver_validating_admission_policy_check_duration_seconds_bucket{enforcement_action="allow",policy="policy.example.com",policy_binding="binding.example.com",state="active",le="0.1"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go install example.com/cmd/a@v1.0.0 example.com/cmd/nomatch...@v1.0.0
    stderr '^go: warning: "example.com/cmd/nomatch\.\.\." matched no packages$'
    
    # If a wildcard matches only non-main packages, we should see a different warning.
    go install example.com/cmd/err...@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_downgrade_missing.txt

    ! go get example.net/pkgadded@v1.0.0 .
    stderr '^go: example.com/m imports\n\texample.net/pkgadded/subpkg: cannot find module providing package example.net/pkgadded/subpkg$'
    ! stderr 'example.net/pkgadded v1\.2\.0'
    cmp go.mod.orig go.mod
    
    go get example.net/pkgadded@v1.0.0
    ! go list -deps -mod=readonly .
    stderr '^m.go:3:8: cannot find module providing package example\.net/pkgadded/subpkg: '
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics/metrics_test.go

                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.025"} 0
                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.05"} 0
                apiserver_authorization_webhook_duration_seconds_bucket{name="wh1.example.com",result="timeout",le="0.1"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                }
            }
    
            then:
            // 1 test class + 2 test method events
            stdout.toString().contains("Reusing configuration cache.")
            events.testClassesAndMethods.size() == 3
            assertTestExecuted(className: 'example.MyTest', methodName: 'foo', task: ':secondTest')
            assertTestExecuted(className: 'example.MyTest', methodName: 'foo2', task: ':secondTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top