Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,528 for BAR (0.05 sec)

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

    go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz.go
    
    # baz_with_outside_dep.go (with a non-std dependency) works with -mod=mod
    # but not with -mod=readonly and -mod=vendor.
    go build -x -mod=mod my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactoryTest.groovy

        def "creates module"() {
            when:
            def m = factory.module('foo', 'bar')
    
            then:
            m.group == 'foo'
            m.name == 'bar'
        }
    
        def "caches module ids"() {
            when:
            def m1 = factory.module('foo', 'bar')
            def m2 = factory.module('foo', 'bar')
    
            then:
            m1.is(m2)
        }
    
        def "caches modules with versions"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/path/filepath/path_windows_test.go

    	}{
    		{"", ""},
    		{".", "."},
    		{"./foo/bar", `FOO\BAR`},
    		{"/", `\`},
    		{"/foo/bar", `\FOO\BAR`},
    		{"/foo/bar/baz/qux", `\FOO\BAR\BAZ\QUX`},
    		{"foo/bar", `FOO\BAR`},
    		{"C:/foo/bar", `C:\FOO\BAR`},
    		{"C:foo/bar", `C:FOO\BAR`},
    		{"c:/foo/bar", `C:\FOO\BAR`},
    		{"C:/foo/bar", `C:\FOO\BAR`},
    		{"C:/foo/bar/", `C:\FOO\BAR`},
    		{`C:\foo\bar`, `C:\FOO\BAR`},
    		{`C:\foo/bar\`, `C:\FOO\BAR`},
    		{"C:/ふー/バー", `C:\ふー\バー`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

            createDirs("bar")
            settingsFile << """
                rootProject.name = "foo"
                include ":bar"
            """
    
            buildFile << """
                task resolve {
                    doLast {
                        println project(':bar').configurations.bar.files
                    }
                }
    
                project(':bar') {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                        doLast {
                           assert files.collect { it.name } == ['b-bar.jar', 'c-bar.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo.attributes { attribute(arch, Arch.x86); attribute(dummy, 'dummy') }
                        bar.attributes { attribute(arch, Arch.arm64); attribute(dummy, 'dummy') }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            final MethodDesc bar = beanDesc.getMethodDesc("bar", String.class);
            assertThat(bar, is(notNullValue()));
            assertThat(bar.getBeanDesc(), is(sameInstance(beanDesc)));
            assertThat(bar.getMethod(), is(MyBean.class.getDeclaredMethod("bar", String.class)));
            assertThat(bar.getParameterTypes().length, is(1));
            assertThat(bar.getMethodName(), is("bar"));
            assertThat(bar.isPublic(), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    C|/foo/bar  s:file p:/C:/foo/bar
    
    # This should fail
    /C|\\foo\\bar  s:file p:/C:/foo/bar
    //C|/foo/bar  s:file p:/C:/foo/bar
    //server/file  s:file h:server p:/file
    \\\\server\\file  s:file h:server p:/file
    /\\server/file  s:file h:server p:/file
    file:///foo/bar.txt  s:file p:/foo/bar.txt
    file:///home/me  s:file p:/home/me
    //  s:file p:/
    ///  s:file p:/
    ///test  s:file p:/test
    file://test  s:file h:test p:/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            withExtension("foo", ".bar") == "foo.bar"
            withExtension("/some/path/to/foo", ".bar") == "/some/path/to/foo.bar"
            withExtension("foo.baz", ".bar") == "foo.bar"
            withExtension("/some/path/to/foo.baz", ".bar") == "/some/path/to/foo.bar"
            withExtension("\\some\\path\\to\\foo.baz", ".bar") == "\\some\\path\\to\\foo.bar"
            withExtension("/some/path/to/foo.boo.baz", ".bar") == "/some/path/to/foo.boo.bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go

    		errors.NewNotFound(schema.GroupResource{Group: "legacy.kubernetes.io", Resource: "foos"}, "bar"): {
    			Status:  metav1.StatusFailure,
    			Code:    http.StatusNotFound,
    			Reason:  metav1.StatusReasonNotFound,
    			Message: "foos.legacy.kubernetes.io \"bar\" not found",
    			Details: &metav1.StatusDetails{
    				Group: "legacy.kubernetes.io",
    				Kind:  "foos",
    				Name:  "bar",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 05 13:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_buildmod_reason_issue67587.txt

    -- thirteen/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- thirteen/go.mod --
    module example.com
    
    go 1.13
    -- thirteen/vendor/github.com/foo/bar/bar.go --
    package bar
    -- unspecified/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- unspecified/go.mod --
    module example.com
    -- unspecified/vendor/github.com/foo/bar/bar.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:54:40 UTC 2024
    - 572 bytes
    - Viewed (0)
Back to top