Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 549 for Sall (0.22 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileModeAccessor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    public interface FileModeAccessor {
        /**
         * @param f The file to get the mode for. Note that all symlinks are followed.
         * @return The unix mode of the file
         */
        int getUnixMode(File f) throws Exception;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 898 bytes
    - Viewed (0)
  2. subprojects/core-platform/build.gradle.kts

    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
        runtime(project(":daemon-main")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/ClassBoundCallInterceptor.java

         * to be the {@code expectedReceiver} passed to the constructor.
         *
         * @param invocation the arguments supplied by the caller
         * @param consumer the class that invokes the intercepted call
         * @return the value to return to the caller
         * @throws Throwable if necessary to propagate it to the caller
         */
        protected abstract Object interceptSafe(Invocation invocation, String consumer) throws Throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/GradleException.java

     * limitations under the License.
     */
    
    package org.gradle.api;
    
    import javax.annotation.Nullable;
    
    /**
     * <p><code>GradleException</code> is the base class of all exceptions thrown by Gradle.</p>
     */
    public class GradleException extends RuntimeException {
        public GradleException() {
            super();
        }
    
        public GradleException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/FlushableEncoder.java

    /**
     * Represents an {@link Encoder} that buffers encoded data prior to writing to the backing stream.
     */
    public interface FlushableEncoder extends Encoder, Flushable {
        /**
         * Ensures that all buffered data has been written to the backing stream. Does not flush the backing stream.
         */
        @Override
        void flush() throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         */
        ComponentIdentifier getId();
    
        /**
         * The immutable metadata for this component.
         */
        ComponentGraphResolveMetadata getMetadata();
    
        /**
         * Returns the public view of all variants of this component that are available for variant selection, either during graph resolution or artifact resolution.
         */
        List<ResolvedVariantResult> getAllSelectableVariantResults();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sub:viewing_toolchains]]
    === Viewing and debugging toolchains
    
    Gradle can display the list of all detected toolchains including their metadata.
    
    For example, to show all toolchains of a project, run:
    
    ```
    gradle -q javaToolchains
    ```
    
    .Output of **`gradle -q javaToolchains`**
    ----
    > gradle -q javaToolchains
    
     + Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                                )
                            )
                        )
                    ]
                )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses call chain`() {
            val results = parse("f(1).g(2).h(3)")
    
            val expected = """
                FunctionCall [indexes: 10..14, line/column: 1/11..1/15, file: test] (
                    name = h
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

                this.systemProperties["org.gradle.integtest.crossVersion.lowestTestedVersion"] = releasedVersions?.lowestTestedVersion?.version
    
                // We should always be using JUnitPlatform at this point, so don't call useJUnitPlatform(), else this will
                // discard existing options configuration and add a deprecation warning.  Just set the existing options.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    You can also list the tasks only available in the `app` subproject by running `./gradlew :app:tasks`.
    
    TIP: You can obtain more information in the task listing using the `--all` option: `./gradlew tasks --all`.
    
    In <<part1_gradle_init.adoc#part1_begin,part 1>> of the tutorial, we ran the `build` task using the `./gradlew build` command.
    
    == Step 2. Understanding Tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top