Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,269 for BAR (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            block2.propertyAssignment(null, "foo.bar", "bazar", true)
            builder.block(null, "other")
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    // Add some thing
    foo.bar {
        foo.bar = "bazar"
    }
    
    // Do it again
    foo.bar {
        foo.bar = "bazar"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        assertEquals("[(bar,1)=b, (foo,1)=a, (foo,3)=c]", table.cellSet().toString());
      }
    
      public void testRowKeySetToString_ordered() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertEquals("[bar, foo]", table.rowKeySet().toString());
      }
    
      public void testValuesToString_ordered() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. 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)
  8. pkg/scheduler/internal/cache/debugger/comparer_test.go

    	}{
    		{
    			name:      "redundant cached value",
    			actual:    []string{"foo", "bar"},
    			cached:    []string{"bar", "foo", "foobar"},
    			missing:   []string{},
    			redundant: []string{"foobar"},
    		},
    		{
    			name:      "missing cached value",
    			actual:    []string{"foo", "bar", "foobar"},
    			cached:    []string{"bar", "foo"},
    			missing:   []string{"foobar"},
    			redundant: []string{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/resolutionErrors.kt

    fun foo() {}
    fun bar(s: String) {}
    fun bar(f: () -> Unit) {}
    fun test() {
        foo(1)
        bar(2)
        bar("", 1)
        bar()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 09 12:56:52 UTC 2021
    - 123 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_none.txt

    env GO111MODULE=on
    
    go mod init example.com/foo
    
    # 'go get bar@none' should be a no-op if module bar is not active.
    go get example.com/bar@none
    go list -m all
    ! stdout example.com/bar
    
    go get example.com/bar@none
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 253 bytes
    - Viewed (0)
Back to top