Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,669 for BAR (0.04 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/JavaConventionPluginTest.kt

                    public void deprecatedMethod() {}
                }
            """)
    
            testProjectDir.newFile("src/main/java/com/example/Bar.java").writeText("""
                package com.example;
    
                public class Bar {
                    public void bar() {
                        new Foo().deprecatedMethod();
                    }
                }
            """)
    
            val result = runTask("build")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue24651a.go

    	return x * (x + 1) * (x + 2)
    }
    
    func Bar(x int) int { // ERROR "can inline Bar with cost .* as: func\(int\) int { return x \* \(x \+ 1\) \* \(x \+ 2\) }$"
    	return x * (x + 1) * (x + 2)
    }
    
    var x = 5
    
    //go:noinline Provide a clean, constant reason for not inlining main
    func main() { // ERROR "cannot inline main: marked go:noinline$"
    	println("Foo(", x, ")=", Foo(x))
    	println("Bar(", x, ")=", Bar(x)) // ERROR "inlining call to Bar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 881 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedContainersDslTest.kt

            testConfigurationContainerVia(
                "api",
                """
    
                val foo: Configuration = configurations.getByName("foo")
                val bar: Configuration = configurations.getByName("bar") {
                    extendsFrom(foo)
                }
    
                val bazar: Configuration = configurations.create("bazar")
                val cathedral: Configuration = configurations.create("cathedral") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/metrics_test.cc

      SavedModelWriteFingerprint().Set("bar");
      EXPECT_EQ(SavedModelWriteFingerprint().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePath) {
      EXPECT_EQ(SavedModelWritePath().value(), "");
      SavedModelWritePath().Set("foo");
      EXPECT_EQ(SavedModelWritePath().value(), "foo");
      SavedModelWritePath().Set("bar");
      EXPECT_EQ(SavedModelWritePath().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePathAndSingleprint) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "test"                | true
            ["*Foo+Bar*"]                       | "Foo+Bar"                 | "xxxx"                | true
            ["*Foo+Bar*"]                       | "com.Foo+Bar"             | "xxxx"                | true
            ["*Foo+Bar*"]                       | "FooBar"                  | "xxxx"                | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesExtensionTest.groovy

            when:
            extension.foo = "bar"
    
            then:
            extension.foo == "bar"
        }
    
        def "cannot read or write unregistered property using groovy syntax"() {
            when:
            extension.foo
    
            then:
            thrown(MissingPropertyException)
    
            when:
            extension.foo = "bar"
    
            then:
            extension.foo == "bar"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/file/util/kubeyaml/kubeyaml_test.go

    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			``,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo`,
    		split: []string{
    			`
    yaml: foo`,
    			`bar: boo`,
    		},
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

                    "id 'noop'",
                    "id('noop').version('bar')",
                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
                    "id 'noop' apply false",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

            plugin('bar', 'com.example.bar', 'The Bar Plugin', 'The greatest Bar plugin of all time.')
            publishToIvy()
    
            when:
            succeeds 'publish'
    
            then:
            def fooMarker = ivyRepo.module('com.example.foo', 'com.example.foo' + PLUGIN_MARKER_SUFFIX, '1.0')
            def barMarker = ivyRepo.module('com.example.bar', 'com.example.bar' + PLUGIN_MARKER_SUFFIX, '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MultisetsImmutableEntryTest.java

        assertEquals("bar x 2", entry("bar", 2).toString());
      }
    
      public void testToStringNull() {
        assertEquals("null", entry(NE, 1).toString());
        assertEquals("null x 2", entry(NE, 2).toString());
      }
    
      public void testEquals() {
        assertEquals(control("foo", 1), entry("foo", 1));
        assertEquals(control("bar", 2), entry("bar", 2));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top