Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for Lyding (0.09 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SubtypingTest.kt

        @get:Restricted
        abstract var superClassProp: SuperClass
    
        @get:Restricted
        abstract var superInterfaceProp: SuperInterface
    
        @Adding
        abstract fun addSuperClass(superclass: SuperClass)
    
        @Adding
        abstract fun addSuperInterface(superclass: SuperInterface)
    
        @Restricted
        abstract fun sub(): Subtype
    
        @Restricted
        abstract fun notASub(): NotASubtype
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

             */
            @Nullable
            public Throwable getClientFailure() {
                return clientFailure;
            }
    
            /**
             * Returns a copy of this result adding the given failures.
             */
            public Result addFailures(List<Throwable> failures) {
                if (failures.isEmpty()) {
                    return this;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                        // Ensure parameters.outputFile is set before adding ourselves as a listener
                        if (!parameters.outputFile.present) {
                            throw new IllegalStateException("parameters.outputFile is not set")
                        }
                        loggingOutput = objects.newInstance(InternalServices).loggingOutput
                        println("ADDING " + this + " TO " + loggingOutput)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/property/tests/propertyKotlin.out

    Root project 'property-provider'
    ------------------------------------------------------------
    
    classpath
    No dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 328 bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.dom
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HiddenInDeclarativeDsl
    import org.gradle.declarative.dsl.model.annotations.Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/build.gradle.kts

    }
    
    description = """JVM-specific testing functionality, including the Test type and support for configuring options for and detecting
    tests written in various JVM testing frameworks. This project "extends" the testing-base project by sub-typing many
    of its abstractions with JVM-specific abstractions or implementations.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build, and is a necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.schemaBuilder
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HasDefaultValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                            assert memBean.heapMemoryUsage.max > 256 * 1024 * 1024
                        }
                    }
                }
            """
    
            when:
            // This prevents the executer fixture from adding "default" values to the build jvm options
            executer.useOnlyRequestedJvmOpts()
            executer.withEnvironmentVars(JAVA_TOOL_OPTIONS: javaToolOptions)
            run "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainerFactory.java

                        Describables.of(k, type),
                        context -> factory.apply(k)
                    )
                );
    
                // Calculate the value after adding the entry to the map, so that the value
                // container can take care of thread synchronization
                value.finalizeIfNotAlready();
                return value.get();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * <p>
         * The annotation can be applied on the class directly, but the preferred way is to annotate the package by adding or updating the {@code package-info.java} file.
         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top