Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 391 for bar (0.13 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/annotationUsage.kt

    // FILE: context.kt
    import lib.Anno
    
    @Anno
    fun foo(): Int = 5
    
    @Anno(x = "bar")
    fun bar(): Int = 10
    
    fun test() {
        <caret_context>val x = 0
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 418 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildSrcScriptCompileAvoidanceIntegrationTest.kt

            givenKotlinScriptInBuildSrcContains(
                "Foo",
                """
                fun foo() {
                    println("bar")
                }
                """
            )
            configureProject().assertBuildScriptCompilationAvoided().assertOutputContains("bar")
        }
    
        @Test
        fun `recompiles buildscript on inline function change in buildSrc script`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.capturing.txt

    ContainingClass[name: <this>; isMutated: false; displayText: this@Foo]
        class Foo : R|kotlin/Any|
        R|Foo|
    ContainingClass[name: <this>; isMutated: false; displayText: this@Bar]
        class Bar : R|kotlin/Any|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 228 bytes
    - Viewed (0)
  5. 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)
  6. maven-embedder/src/test/java/org/apache/maven/cli/CleanArgumentTest.java

        @Test
        void cleanArgsShouldRemoveWrongSurroundingQuotes() {
            String[] args = {"\"-Dfoo=bar", "\"-Dfoo2=bar two\""};
            String[] cleanArgs = CleanArgument.cleanArgs(args);
            assertEquals(args.length, cleanArgs.length);
            assertEquals("-Dfoo=bar", cleanArgs[0]);
            assertEquals("-Dfoo2=bar two", cleanArgs[1]);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/nestedClass.txt

    /Foo.Bar.bar
    /Foo.Bar
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 26 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

            values = "http://www.foo.com/\nhttp://www.bar.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "http://www.foo.com/ \r\nhttp://www.bar.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "http://www.foo.com/\nhttp://www.bar.com/\n http://www.baz.com/";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_ambiguous_path.txt

    # See golang.org/issue/34653.
    
    # A single pattern for a package ending in '.go'.
    go list ./foo.go
    stdout '^test/foo.go$'
    
    # Multiple patterns for packages including one ending in '.go'.
    go list ./bar ./foo.go
    stdout '^test/bar$'
    stdout '^test/foo.go$'
    
    # A single pattern for a Go file.
    go list ./a.go
    stdout '^command-line-arguments$'
    
    # A single typo-ed pattern for a Go file. This should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top