Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 707 for Sall (0.03 sec)

  1. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

                assert decoder.readString() == value.toString()
            }
    
            where:
            value                            | _
            ""                               | _
            "all ascii"                      | _
            "\u0000\u0101\u3100"             | _
            "${1 + 2}"                       | _
            new StringBuilder("some string") | _
            CharBuffer.wrap("a string")      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * {@code AbstractArchiveTask} is the base class for all archive tasks.
     */
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    public abstract class AbstractArchiveTask extends AbstractCopyTask {
        // All of these field names are really long to prevent collisions with the groovy setters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // Copyright 2006, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Default implementation of {@link JavaPluginExtension}.
     *
     * This extension is used to implicitly configure all JVM-related {@link org.gradle.api.component.Component}s
     * in the project.  Some methods - such as {@link #registerFeature(String, Action)} -
     * are not applicable in this manner and will throw exceptions if used when multiple
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            assertMutable("migratingUnlocked(String, ConfigurationRole, Action)");
    
            if (ConfigurationRolesForMigration.ALL.contains(role)) {
                return createUnlockedConfiguration(name, role, action);
            } else {
                throw new InvalidUserDataException("Unknown migration role: " + role);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    )
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `unexpected statement separator inside function call`() {
            val code = "id(\"plugin-id-1\";)"
    
            val expected = """
                ErroneousStatement (
                    ParsingError(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            def projectA = mavenHttpRepo.module('group', 'projectA', '1.5').publish()
    
            buildFile << createBuildFile(mavenHttpRepo.uri)
            buildFile << """
                repositories.all {
                    metadataSources {
                        mavenPom()
                        artifact()
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    You also want to ensure that all consumers of the property see the same value when they query the value.
    
    [[lazy_configuration_faqs]]
    == Using the Provider API
    
    Guidelines to be successful with the Provider API:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::{snippetsPath}/ant/useAntTask/tests/useAntTask.out[]
    ----
    
    TIP: You can mix Groovy/Kotlin code and the Ant task markup. This can be extremely powerful.
    
    You pass nested text to an Ant task as a parameter of the task method call.
    In this example, we pass the message for the `echo` task as nested text:
    
    ====
    include::sample[dir="snippets/ant/taskWithNestedText/kotlin",files="build.gradle.kts"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

            public final AntlrResult process(AntlrSpec spec) {
                try {
                    return doProcess(spec);
                } catch (ClassNotFoundException e) {
                    //this shouldn't happen if you call check availability with #available first
                    throw new GradleException("Cannot process antlr sources", e);
                }
            }
    
            /**
             * process used for antlr3/4
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top