Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for start (0.24 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

            StartScriptTemplateBindingFactory.windows(),
            FileCollectionBackedTextResource(temporaryFileProvider, windowsScriptTemplate, StandardCharsets.UTF_8)
        )
    
        /**
         * Modifies the start script injecting -javaagent flags. The start script file is updated in-place by appending Java agent switches to 'DEFAULT_JVM_OPTS' variable declaration.
         */
        private
        fun File.injectAgentOptions(separator: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postinst

            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    
        elif command -v update-rc.d >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  4. test-site/README.md

    Test site for fess-suggest
    =================================
    
    ## Usage
    
    Start site.
    ```
    $ activator run
    ```
    
    Finish site. Ctrl + D
    
    ### URLs
    * test-site : http://localhost:9000
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 09:13:55 UTC 2015
    - 217 bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/html/html.golden

    // START f
    func f() <span class="cov8" title="1">{
    	ch := make(chan int)
    	select </span>{
    	case &lt;-ch:<span class="cov0" title="0"></span>
    	default:<span class="cov8" title="1"></span>
    	}
    }
    
    // END f
    // START g
    func g() <span class="cov8" title="1">{
    	if false </span><span class="cov0" title="0">{
    		fmt.Printf("Hello")
    	}</span>
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 07 22:47:53 UTC 2018
    - 345 bytes
    - Viewed (0)
  6. architecture/build-state-model.md

    The build session state is managed by the `BuildSessionState` class.
    An instance is created at the start of a Gradle invocation and discarded at the end of that invocation.
    
    The build session state also includes "cross session" state that is shared with any "nested" sessions that need to be created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/main/resources/mail/crawler.dfmail

    --- Web/FileSystem Crawler ---
    Start Time: /*pmb.webFsCrawlStartTime:orElse('-')*/
    End Time:   /*pmb.webFsCrawlEndTime:orElse('-')*/
    Exec Time:  /*pmb.webFsCrawlExecTime:orElse('-')*/ ms
    
    --- Web/FileSystem Indexer ---
    Exec Time:  /*pmb.webFsIndexExecTime:orElse('-')*/ ms
    Num of Doc: /*pmb.webFsIndexSize:orElse('-')*/ docs
    
    --- Data Store Crawler ---
    Start Time: /*pmb.dataCrawlStartTime:orElse('-')*/
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jan 15 22:05:20 UTC 2020
    - 1K bytes
    - Viewed (0)
  8. src/packaging/deb/lintian/fess

    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-independent-package-contains-binary-or-object
    # Not stripping external libraries
    fess binary: unstripped-binary-or-object
    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-dependent-file-in-usr-share
    # Please check our changelog at https://github.com/codelibs/fess
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 439 bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

            println(newCode)
    
            println("===")
            schema.reflectAndPrint(newCode)
        }
    }
    
    
    private
    fun String.replaceRange(range: IntRange, replacement: String): String {
        return take(range.start) + replacement + drop(range.last + 1)
    }
    
    
    val pluginDefinition = schema.dataClassesByFqName
        .getValue(DefaultFqName.parse("org.gradle.internal.declarativedsl.demo.demoPlugins.PluginDefinition"))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

    object StartReleaseCycleTest : BasePromotionBuildType(vcsRootId = gradlePromotionBranches, cleanCheckout = false) {
        init {
            id("Promotion_AllBranchesStartReleaseCycleTest")
            name = "Start Release Cycle Test"
            description = "Test for Start Release Cycle pipeline"
    
            steps {
                gradleWrapper {
                    name = "PromoteTest"
                    tasks = "clean promoteStartReleaseCycle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top