Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for foobar (0.34 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
                        line + getAgentOptions("\$APP_HOME").joinToString(separator = " ", prefix = "\" ", postfix = "\"") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                """,
                multifileAnnotations
            )
            withUniqueScript("println($packageName.foo() + $packageName.bar())")
            configureProject().assertBuildScriptCompiled().assertOutputContains("foobar")
    
            givenKotlinScriptInBuildSrcContains(
                "foo",
                """
                fun foo() = "bar"
                """,
                multifileAnnotations
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertFailure(parser("foo"), "Expecting symbol 'bar'")
            assertFailure(parser("bar"), "Expecting symbol 'foo', but got 'bar' instead")
            assertFailure(parser("foobar"), "Expecting symbol 'foo', but got 'foobar' instead")
        }
    
        private
        fun assertFailure(parse: ParserResult<*>, reason: String) {
            assertThat(
                parse,
                equalTo(failure(reason))
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

        }
    
        @Test
        fun `can adapt binary function using KotlinClosure2`() {
    
            fun closure(function: (String, String) -> String) = KotlinClosure2(function)
    
            assertEquals(
                "foobar",
                closure { x, y -> x + y }.call("foo", "bar")
            )
        }
    
        @Test
        fun `can adapt binary null receiving function using KotlinClosure2`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

        @Test
        fun `#isLegalAccessorName rejects illegal Kotlin extension names`() {
    
            assert(isLegalAccessorName("foo_bar"))
            assert(isLegalAccessorName("foo-bar"))
            assert(isLegalAccessorName("foo bar"))
            assert(isLegalAccessorName("'foo'bar'"))
            assert(isLegalAccessorName("foo${'$'}${'$'}bar"))
    
            assertFalse(isLegalAccessorName("foo`bar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

    NAVBAR_MD_FIXED: 'layout-md-navbar-fixed',\n    NAVBAR_LG_FIXED: 'layout-lg-navbar-fixed',\n    NAVBAR_XL_FIXED: 'layout-xl-navbar-fixed',\n    FOOTER_FIXED: 'layout-footer-fixed',\n    FOOTER_SM_FIXED: 'layout-sm-footer-fixed',\n    FOOTER_MD_FIXED: 'layout-md-footer-fixed',\n    FOOTER_LG_FIXED: 'layout-lg-footer-fixed',\n    FOOTER_XL_FIXED: 'layout-xl-footer-fixed',\n  }\n\n  const Default = {\n    controlsidebarSlide: true,\n    scrollbarTheme : 'os-theme-light',\n    scrollbarAutoHide: 'l',\n  }\n\n  /**\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. build-logic-settings/settings.gradle.kts

     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    include("build-environment")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 891 bytes
    - Viewed (0)
  8. src/packaging/common/scripts/preinst

                        "$FESS_USER"
                echo " OK"
            fi
        ;;
    
        *)
            echo "pre install script called with unknown argument \`$1'" >&2
            exit 1
        ;;
    esac
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  9. src/packaging/common/scripts/postrm

        if id "$FESS_USER" > /dev/null 2>&1 ; then
            userdel "$FESS_USER"
        fi
    
        if getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
            groupdel "$FESS_GROUP"
        fi
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  10. architecture/standards/0004-use-a-platform-architecture.md

    This includes software that is implemented using Java, Kotlin or some other JVM language.
    
    This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin. 
    
    #### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top