Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,836 for additional (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsTest.groovy

    class ScalaCompileOptionsTest extends Specification {
    
        def 'additional parameters are empty by default'() {
            ScalaCompileOptions scalaCompileOptions = TestUtil.newInstance(ScalaCompileOptions)
    
            expect:
            scalaCompileOptions.additionalParameters != null
            scalaCompileOptions.additionalParameters.isEmpty()
        }
    
        def 'can append to additional parameters #description'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            outputs.noneRecompiled()
    
            where:
            testCase                       | headerDirs
            "extra header dir after"       | '"src/main/headers", "src/additional-headers"'
            "extra header dir before"      | '"src/additional-headers", "src/main/headers"'
            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top