Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 403 for stage1 (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompileOperation.java

         * <p>
         * Used to distinguish between the classes compiled from the same script with different transformers, so should be a valid java identifier.
         */
        String getId();
    
        /**
         * The stage of this compile operation.
         * This is exposed by {@link org.gradle.internal.scripts.CompileScriptBuildOperationType.Details#getStage()}.
         * */
        String getStage();
    
        Transformer getTransformer();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 01 11:44:55 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    You can learn more about advanced Travis CI usage through these resources:
    
    * https://docs.travis-ci.com/user/encryption-keys/[Encrypting sensitive data]
    * https://docs.travis-ci.com/user/build-stages/[Modelling a pipeline with build stages]
    
    == Summary
    
    Executing Gradle builds on CI can be set up and configured with just a handful of steps.
    The benefit of receiving fast feedback clearly speaks for itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy/src/main/java/Person.java

        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/DslReference.java

        /**
         * Resources to include with the generated documentation.
         */
        public abstract ConfigurableFileCollection getResources();
    
        /**
         * Location to stage the intermediate documentation. This is like a working directory.
         */
        public abstract DirectoryProperty getStagingRoot();
    
        public abstract RegularFileProperty getGeneratedMetaDataFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                        val name = "Compile script ${scriptPath.substringAfterLast(File.separator)} ($stage)"
                        return BuildOperationDescriptor.displayName(name).name(name).details(object : Details {
                            override fun getStage(): String = stage
                            override fun getLanguage(): String = "KOTLIN"
                        })
                    }
                })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/kotlin/src/main/java/org/gradle/Person.java

            return surname;
        }
    
        public void setSurname(String surname) {
            this.surname = surname;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 369 bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    import java.lang.annotation.Target
    
    /**
     * Marks a test as flaky. The flaky tests are quarantined to run
     * at a special stage so it won't interrupt normal build pipeline.
     *
     * For Spock tests, including/excluding tests annotated by this annotation is handled by `SpockConfig.groovy` in classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

        public void addFirstLevelDependency(Dependency moduleDependency, DependencyGraphNode dependency) {
            builder.firstLevelDependency(dependency.getNodeId());
            //we don't serialise the module dependencies at this stage so we need to keep track
            //of the mapping module dependency <-> resolved dependency
            modulesMap.put(dependency.getNodeId(), moduleDependency);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            given:
            file("src/main/java/compile/test/FxApp.java") << """
                import javafx.application.Application;
                import javafx.stage.Stage;
    
                public class FxApp extends Application {
                    public void start(Stage stage) {
                    }
                }
            """
    
            expect:
            succeeds("compileJava")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. ci/official/upload.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # This script uploads all staged artifacts from all previous builds in the same
    # job chain to GCS and PyPI.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only, then fetch the version numbers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top