Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for Jenkins (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .github/workflows/release-branch-cherrypick.yml

        - name: Get some helpful info for formatting
          id: cherrypick
          run: |
              git config --global user.name "TensorFlow Release Automation"
              git config --global user.email "jenkins@tensorflow.org"
              git fetch origin master
              git cherry-pick ${{ github.event.inputs.git_commit }}
              echo "SHORTSHA=$(git log -1 ${{ github.event.inputs.git_commit }} --format="%h")" >> "$GITHUB_OUTPUT"
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Dec 01 09:57:00 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  2. .ci/jobs.t/defaults.yml

        scm:
          - git:
              name: origin
              # master node jenkins user ~/.ssh
              credentials-id: f6c7695a-671e-4f4f-a331-acdce44ff9ba
              reference-repo: "/var/lib/jenkins/.git-references/elasticsearch.git"
              branches:
                - "${branch_specifier}"
              url: "https://github.com/elastic/elasticsearch.git"
    Created: Sun Dec 21 06:47:06 GMT 2025
    - Last Modified: Wed Sep 29 15:38:05 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/JenkinsCIDetector.java

     */
    package org.apache.maven.cling.invoker.cisupport;
    
    import java.util.Optional;
    
    import org.apache.maven.api.cli.cisupport.CIInfo;
    
    /**
     * Jenkins CI support.
     */
    public class JenkinsCIDetector implements CIDetector {
        public static final String NAME = "Jenkins";
    
        private static final String WORKSPACE = "WORKSPACE";
    
        @Override
        public Optional<CIInfo> detectCI() {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. .ci/java-versions.properties

    # This file is used with all of the non-matrix tests in Jenkins.
    
    # This .properties file defines the versions of Java with which to
    # build and test Elasticsearch for this branch. Valid Java versions
    # are 'java' or 'openjdk' followed by the major release number.
    
    ES_BUILD_JAVA=openjdk16
    Created: Sun Dec 21 06:47:06 GMT 2025
    - Last Modified: Wed Jun 30 16:39:44 GMT 2021
    - 313 bytes
    - Click Count (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/cisupport/CIInfo.java

    /**
     * CI support: this class contains gathered information and more from CI that Maven process runs on.
     *
     * @since 4.0.0
     */
    public interface CIInfo {
        /**
         * Short distinct name of CI system: "GH", "Jenkins", etc.
         */
        @Nonnull
        String name();
    
        /**
         * May return a message that will be logged by Maven explaining why it was detected (and possibly more).
         */
        @Nonnull
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  6. Jenkinsfile

     * By default this method does NOT execute ITs anymore, just "install".
     *
     * mavenBuild("<jdk>", "<profiles> <goals> <plugins> <properties>"
     *
     * @param jdk the jdk tool name (in jenkins) to use for this build
     * @param extraArgs extra command line args
     */
    def mavenBuild(jdk, extraArgs) {
      script {
        try {
          withEnv(["JAVA_HOME=${tool "$jdk"}",
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 10 12:31:48 GMT 2025
    - 2K bytes
    - Click Count (0)
  7. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java

        }
    
        @Test
        void generic() throws Exception {
            assertEquals(GenericCIDetector.NAME + ";", runner(Map.of("CI", "true")));
        }
    
        @Test
        void jenkins() throws Exception {
            assertEquals(JenkinsCIDetector.NAME + ";", runner(Map.of("CI", "true", "WORKSPACE", "foobar")));
        }
    
        @Test
        void circleci() throws Exception {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  8. .github/workflows/update-rbe.yml

          uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
          with:
            title: Update the RBE images to the latest container versions
            committer: TensorFlow Release Automation <jenkins@tensorflow.org>
            token: ${{ secrets.JENKINS_TOKEN }}
            reviewers: mihaimaruseac,learning-to-play,nitins17
            body: |
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Dec 01 09:57:00 GMT 2025
    - 7.2K bytes
    - Click Count (1)
  9. README.md

    -   **Continuous Integration**: Gradle easily connects with popular CI tools, including Jenkins, [GitHub Actions](https://docs.github.com/actions), [GitLab CI](https://docs.gitlab.com/ee/ci/), [CircleCI](https://circleci.com/), and more, to streamline build and deployment pipelines.
    
    ---
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Oct 20 22:15:26 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/hash/HashTestUtils.java

       * f(x)^c with greater than expected probability. The test for funneling is merely a test for
       * 1-bit characteristics.
       *
       * <p>There is more general code provided by Bob Jenkins to test arbitrarily sized characteristics
       * using the magic of gaussian elimination: http://burtleburtle.net/bob/crypto/findingc.html.
       */
      static void checkNo2BitCharacteristics(HashFunction function) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 18:19:59 GMT 2025
    - 25.6K bytes
    - Click Count (0)
Back to Top