Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 783 for example1 (0.13 sec)

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

    -- foo.go --
    package main
    
    import (
    	_ "example.com/Foo"
    	_ "example.com/foo"
    )
    
    func main() {}
    -- go.mod --
    module play.ground
    
    go 1.14
    
    require (
    	example.com/foo v0.1.0
    	example.com/Foo v0.1.0
    )
    
    replace (
    	example.com/foo => ./foo
    	example.com/Foo => ./foo_alt
    )
    -- foo/go.mod --
    module example.com/foo
    -- foo/foo.go --
    package foo
    
    -- foo_alt/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:04:57 UTC 2024
    - 528 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTestLauncherCrossVersionSpec.groovy

                launcher.withTaskAndTestClasses(':included-build:test', ["example.IncludedTest2"])
            }
            then:
            assertTaskExecuted(":included-build:test")
            assertTestExecuted(className: "example.IncludedTest2", methodName: "bar", task: ":included-build:test")
            assertTestNotExecuted(className: "example.IncludedTest")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/manually.md

    Now you can use Trio internally in your app. Or even better, you can use AnyIO, to keep your code compatible with both Trio and asyncio. 🎉
    
    ## Deployment Concepts
    
    These examples run the server program (e.g Uvicorn), starting **a single process**, listening on all the IPs (`0.0.0.0`) on a predefined port (e.g. `80`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work.txt

    cd c
    go run  example.com/b
    stdout 'Hello, world.'
    cd $GOPATH/src
    
    go list all # all includes both modules
    stdout 'example.com/a'
    stdout 'example.com/b'
    
    # -mod can only be set to readonly in workspace mode
    go list -mod=readonly all
    ! go list -mod=mod all
    stderr '^go: -mod may only be set to readonly or vendor when in workspace mode'
    env GOWORK=off
    go list -mod=mod all
    env GOWORK=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.groovy

            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
            when:
            run('check', '--rerun-tasks')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_git.txt

    # main module, there should be no VCS info.
    go mod edit -require=example.com/b@v0.0.0
    go mod edit -replace=example.com/b@v0.0.0=../b
    go mod edit -require=example.com/d@v0.0.0
    go mod edit -replace=example.com/d@v0.0.0=../../outside/d
    go install example.com/d
    go version -m $GOBIN/d$GOEXE
    ! stdout vcs.revision
    exec git checkout go.mod
    rm $GOBIN/d$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    example.com/m
    example.net/ambiguous v0.1.0
    example.net/ambiguous/nested v0.1.0
    example.net/indirect v0.1.0 => ./indirect
    -- m.go --
    package m
    
    import _ "example.net/indirect"
    
    -- indirect/go.mod --
    module example.net/indirect
    
    go 1.17
    
    require example.net/ambiguous v0.1.0
    -- indirect/indirect.go --
    package indirect
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/firstns/sa/firstsa",
    					"hello.west.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java

        }
    
        public void test_match_both() {
            urlFilter.addInclude("http://example.com/.*");
            urlFilter.addExclude("http://example.com/a.*");
    
            final String sessionId = "id1";
            urlFilter.init(sessionId);
    
            assertTrue(urlFilter.match("http://example.com/"));
            assertFalse(urlFilter.match("http://example.com/a"));
            assertFalse(urlFilter.match("http://test.com/"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/TestLauncherCrossVersionSpec.groovy

                launcher.withTaskAndTestClasses(':secondTest',["example.MyTest2"])
            }
            then:
            assertTaskNotExecuted(":test")
            assertTaskExecuted(":secondTest")
            assertTestExecuted(className: "example.MyTest2", methodName: "bar", task: ":secondTest")
            assertTestNotExecuted(className: "example.MyTest")
        }
    
        def "can target specific test task and methods"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top