Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,943 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/AdditionalData.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    
    import java.util.Map;
    
    /**
     * Additional data attached to the problem.
     * <p>
     * There are no subtypes defined for this interface yet. Clients should expect some defined in future versions of Gradle.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. docs/en/docs/reference/websockets.md

    You can import it directly form `fastapi`:
    
    ```python
    from fastapi import WebSocketDisconnect
    ```
    
    ::: fastapi.WebSocketDisconnect
    
    ## WebSockets - additional classes
    
    Additional classes for handling WebSockets.
    
    Provided directly by Starlette, but you can import it from `fastapi`:
    
    ```python
    from fastapi.websockets import WebSocketDisconnect, WebSocketState
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. docs/bucket/replication/DESIGN.md

    ### Multi destination replication
    
    The replication design for multiple sites works in a similar manner as described above for two site scenario. However there are some
    important exceptions.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top