Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for captures (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

    class ApplyPluginBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "captures plugin application events"() {
            given:
            file("build.gradle") << "apply plugin: 'java'"
    
            when:
            succeeds "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            }
        }
    
        def "captures output from buildSrc"() {
            given:
            configureNestedBuild('buildSrc')
            file('buildSrc/build.gradle') << "jar.dependsOn 'foo'"
            file("build.gradle") << ""
    
            when:
            succeeds "help"
    
            then:
            assertNestedTaskOutputTracked(':buildSrc')
        }
    
        def "captures output from composite builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

            <span class="badge-text">How to Use Build Scans&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    A build scan is a *representation of metadata captured* as you run your build.
    
    image::gradle-basic-1.png[]
    
    == Build Scans
    Gradle captures your build metadata and sends it to the link:https://scans.gradle.com/[Build Scan Service].
    The service then transforms the metadata into information you can analyze and share with others.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // it would handle that error immediately and a totally valid generation
    // would be skipped for parsing and rejected because of an error in a
    // batch in the following generation.
    //
    // This test captures this behavior by making both the first generation
    // and second generation bad. It requires that the issue in the first
    // generation, which is caught when actually ordering events, be reported
    // instead of the second one.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

                "serialize",
                // TODO: maybe introduce a separate section for the lambda serialization contract
                DocumentationSection.RequirementsDisallowedTypes
            ) {
                text(" a lambda that captures or accepts a parameter of type ")
                reference(baseType)
            }
        }
    
        private
        val unsupportedTypes: Map<Type, KClass<*>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationBuildOperationIntegrationTest.groovy

        BuildOperationsFixture operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        @UnsupportedWithConfigurationCache(because = "captures worker threads in shared state")
        def "task operations are closed even when interrupting the execution workers"() {
            server.start()
            executer.withStackTraceChecksDisabled()
            def parallelTaskCount = 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:46:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. cmd/globals.go

    	globalBrowserConfig browser.Config
    
    	// This flag is set to 'true' when MINIO_UPDATE env is set to 'off'. Default is false.
    	globalInplaceUpdateDisabled = false
    
    	// Captures site name and region
    	globalSite config.Site
    
    	// MinIO local server address (in `host:port` format)
    	globalMinioAddr = ""
    
    	// MinIO default port, can be changed through command line.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

         *
         * @param type the {@literal Class}
         * @param <T> the parameterized type of the given {@literal Class}
         * @return the {@literal TypeOf} that captures the generic type of the given {@literal Class}
         */
        public static <T> TypeOf<T> typeOf(Class<T> type) {
            return new TypeOf<T>(
                ModelType.of(typeWhichCannotBeNull(type))) {
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/Jsr330ConstructorSelector.java

                TreeFormatter formatter = new TreeFormatter();
                formatter.node(type);
                formatter.append(" is a non-static inner class, it probably captures a variable from the outer scope.");
                throw new IllegalConstructionException(formatter.toString(), CUSTOM_GRADLE_TASK_DOC_LINK);
            }
        }
    
        public static class CachedConstructor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:52:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/kube/controllers/common.go

    type EventType int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd EventType = iota
    
    	// EventUpdate is sent when an object is modified
    	// Captures the modified object
    	EventUpdate
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    	EventDelete
    )
    
    func (event EventType) String() string {
    	out := "unknown"
    	switch event {
    	case EventAdd:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top