Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for pemEnd (0.15 sec)

  1. src/encoding/pem/pem.go

    		// immediately, without a leading newline.
    		if len(p.Headers) == 0 && bytes.HasPrefix(rest, pemEnd[1:]) {
    			endIndex = 0
    			endTrailerIndex = len(pemEnd) - 1
    		} else {
    			endIndex = bytes.Index(rest, pemEnd)
    			endTrailerIndex = endIndex + len(pemEnd)
    		}
    
    		if endIndex < 0 {
    			continue
    		}
    
    		// After the "-----" of the ending line, there should be the same type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    [[sec:configuration_on_demand]]
    == Enable `configuration-on-demand`
    
    You can enable configuration-on-demand using the `--configure-on-demand` flag or adding `org.gradle.configureondemand=true` to the `gradle.properties` file.
    
    To configure on demand with every build run, see <<build_environment.adoc#sec:gradle_configuration_properties,Gradle properties>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/ConfigurationOnDemandIntegrationTest.groovy

        @Rule ProjectLifecycleFixture fixture = new ProjectLifecycleFixture(executer, temporaryFolder)
    
        def "start parameter informs about the configuration on demand mode"() {
            file("gradle.properties") << "org.gradle.configureondemand=true"
            buildFile << "assert gradle.startParameter.configureOnDemand"
            expect:
            run()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r41/BuildListenerCrossVersionSpec.groovy

            file("gradle.properties") << """
                org.gradle.configureondemand = true
            """
            output = new TestOutputStream()
        }
    
        def "build listeners are called when using configure-on-demand model builders"() {
            when:
            withConnection {
                ProjectConnection connection ->
                    connection.model(GradleProject)
                        .setStandardOutput(output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/configuration/DefaultProjectsPreparerTest.groovy

        }
    
        def "configures root build for on demand mode"() {
            when:
            configurer.prepareProjects(gradle)
    
            then:
            gradle.rootBuild >> true
            modelParameters.configureOnDemand >> true
        }
    
        def "configures non-root build for on demand mode"() {
            when:
            configurer.prepareProjects(gradle)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/workload.go

    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    // resources (with delta updates), or on-demand and only get responses for specifically subscribed resources.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportingExtension.java

        }
    
        /**
         * The base directory for all reports
         * <p>
         * This value can be changed, so any files derived from this should be calculated on demand.
         *
         * @return The base directory for all reports
         */
        public File getBaseDir() {
            return baseDirectory.getAsFile().get();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
         * @param collectionCallbackActionDecorator the decorator for collection callback action execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            file("gradle.properties") << "org.gradle.configureondemand=false"
            buildFile << "task foo"
    
            when:
            run("foo", "--configure-on-demand")
    
            then:
            fixture.assertProjectsConfigured(":")
            output.count("Configuration on demand is an incubating feature") == 1
        }
    
        @Requires(
            value = [IntegTestPreconditions.NotParallelExecutor, IntegTestPreconditions.NotIsolatedProjects],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r15/ToolingApiConfigurationOnDemandCrossVersionSpec.groovy

        def setup() {
            file("gradle.properties") << "org.gradle.configureondemand=true"
        }
    
        def "building model evaluates all projects regardless of configuration on demand mode"() {
            given:
            file("settings.gradle") << "include 'api', 'impl', 'other'"
            file("build.gradle") << """
                rootProject.description = 'Projects configured: '
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top