Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for wereld (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         *         {@link ProjectBuilderException}.
         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

            model.value == 42
    
            and:
            def streamedModels = listener1.models
            streamedModels.size() == 2
            (streamedModels[0] as GradleProject).name == "hello-world"
            (streamedModels[1] as EclipseProject).gradleProject.name == "hello-world"
    
            when:
            withIsolatedProjects()
            def model2 = runBuildAction(new ModelStreamingBuildAction()) {
                setStreamedValueListener(listener2)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                        given:
                        settingsFile << "rootProject.name = 'hello-world'"
                        buildFile << '''
                            task helloWorld {
                                doLast {
                                    println 'Hello world!'
                                }
                            }
                        '''
    
                        when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    }
    
    
    /**
     * State cached for a build in the tree.
     */
    internal
    sealed class CachedBuildState(
        val identityPath: Path,
    )
    
    
    /**
     * A build in the tree whose projects were loaded. May or may not have work scheduled.
     */
    internal
    sealed class BuildWithProjects(
        identityPath: Path,
        val rootProjectName: String,
        val projects: List<CachedProjectState>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes.md

    
    <!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ADD RELEASE FEATURES ABOVE
    ==========================================================
    
    -->
    
    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes-template.md

    
    <!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ADD RELEASE FEATURES ABOVE
    ==========================================================
    
    -->
    
    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/build.gradle.kts

    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        // Some cycles have been inherited from the time these classes were in :core
        excludePatterns.add("org/gradle/api/internal/file/collections/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

            append(totalProblemCount)
            append(if (totalProblemCount == 1) " problem was found " else " problems were found ")
            append(cacheAction)
            append(" the configuration cache")
            if (overflowed) {
                append(", only the first ")
                append(maxCollectedProblems)
                append(" were considered")
            }
            if (totalProblemCount != uniqueProblemCount) {
                append(", ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication-with-compression.sh

    ./mc ready minio1 --insecure
    ./mc ready minio2 --insecure
    
    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/mpartobj.txt
    shred -s 500M /tmp/data/mpartobj.txt
    echo "done"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
      // could be 64bit) we enforce that the buffer remains at most 32bit length to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top