Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,032 for additional (0.24 sec)

  1. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.service-conventions.gradle

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.service-conventions.gradle

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    def integrationTest = sourceSets.create('integrationTest')
    
    configurations[integrationTest.implementationConfigurationName].extendsFrom(configurations.testImplementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalData.java

    package org.gradle.api.problems.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     * <p>
     * This is effectively a sealed interface that is used to restrict the types of additional data that can be attached to a problem.
     * The list interfaces supported by the problems API are:
     * <ul>
     *     <li>{@link GeneralData}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/authz/headers.go

    	XExtAuthzAllow                    = "allow"
    	XExtAuthzCheckReceived            = "X-Ext-Authz-Check-Received"
    	XExtAuthzAdditionalHeaderOverride = "X-Ext-Authz-Additional-Header-Override"
    	GRPCAdditionalHeaderOverrideValue = "grpc-additional-header-override-value"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 23 16:02:21 UTC 2022
    - 928 bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

                impl(SimpleTask), [impl(TestAction)]
            ) == ["One or more additional actions for task ':test' have changed."]
        }
    
        def "not up-to-date when action is added"() {
            expect:
            changesBetween(
                impl(SimpleTask), [],
                impl(SimpleTask), [impl(TestAction)]
            ) == ["One or more additional actions for task ':test' have changed."]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiAdditionalClasspathProvider.groovy

     */
    
    package org.gradle.integtests.tooling.fixture
    
    import org.gradle.integtests.fixtures.executer.GradleDistribution
    
    
    /**
     * Provides TAPI client additional classpath.
     */
    interface ToolingApiAdditionalClasspathProvider {
    
        /**
         * Additional classpath for given TAPI and target Gradle distribution to be added to the loader of the test class.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/go/doc/comment/doc.go

    modified to customize the operations.
    For details, see the documentation for those types.
    
    Use cases that need additional control over reformatting can
    implement their own logic by inspecting the parsed syntax itself.
    See the documentation for [Doc], [Block], [Text] for an overview
    and links to additional types.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:05:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/runtime/debug/stack.go

    }
    
    // SetCrashOutput configures a single additional file where unhandled
    // panics and other fatal errors are printed, in addition to standard error.
    // There is only one additional file: calling SetCrashOutput again overrides
    // any earlier call.
    // SetCrashOutput duplicates f's file descriptor, so the caller may safely
    // close f as soon as SetCrashOutput returns.
    // To disable this additional crash output, call SetCrashOutput(nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         *
         * @return the failure
         * @since 8.8
         */
        @Nullable
        FailureContainer getFailure();
    
        /**
         * Returns the additional data associated with this problem.
         *
         * @return the additional data
         * @since 8.9
         */
        AdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

        }
    
        /**
         * Additional class dirs that coverage data should be reported for.
         */
        @Optional
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getAdditionalClassDirs() {
            return additionalClassDirs;
        }
    
        /**
         * Additional source dirs for the classes coverage data is being reported for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top