Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 139 for matrix (0.32 seconds)

  1. .ci/matrix-runtime-javas.yml

    # This file is used as part of a matrix build in Jenkins where the
    # values below are included as an axis of the matrix.
    
    # This axis of the build matrix represents the versions of Java on
    # which Elasticsearch will be tested.  Valid Java versions are 'java'
    # or 'openjdk' followed by the major release number.
    
    ES_RUNTIME_JAVA:
      - java11
      - openjdk16
      - zulu11
      - corretto11
      - adoptopenjdk11
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Apr 20 22:36:56 GMT 2021
    - 414 bytes
    - Click Count (0)
  2. .ci/templates.t/matrix-gradle-unix.yml

        project-type: matrix
        child-workspace: /dev/shm/{job-name}
        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: slave
              name: nodes
              values:
                - "general-purpose"
          - axis:
              type: yaml
              filename: "{matrix-yaml-file}"
              name: "{matrix-variable}"
        builders:
          - inject:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 881 bytes
    - Click Count (0)
  3. .ci/matrix-runtime-javas-fips.yml

    # This file is used as part of a matrix build in Jenkins where the
    # values below are included as an axis of the matrix.
    
    # java11 should always be included as we only support Oracle Java 11 in
    # FIPS 140-2 mode. 
    # We also want to test with the bundled JDK so that we proactively find
    # issues that might later be backported to JDK11. Current bundled JDK is
    # openjdk16
    
    ES_RUNTIME_JAVA:
      - java11
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 24 17:56:51 GMT 2021
    - 414 bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+periodic+java-fips-matrix-trigger.yml

    ---
    jjbb-template: periodic-trigger-lgc.yml
    vars:
      - periodic-job: elastic+elasticsearch+%BRANCH%+periodic+java-fips-matrix
      - lgc-job: elastic+elasticsearch+%BRANCH%+intake
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 201 bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+periodic+java-fips-matrix.yml

    ---
    jjbb-template: matrix-gradle-unix.yml
    vars:
      - job-name: elastic+elasticsearch+%BRANCH%+periodic+java-fips-matrix
      - job-display-name: "elastic / elasticsearch # %BRANCH% - java fips compatibility matrix"
      - job-description: "Testing of the Elasticsearch %BRANCH% branch java FIPS compatibility matrix.\n"
      - matrix-yaml-file: ".ci/matrix-runtime-javas-fips.yml"
      - matrix-variable: ES_RUNTIME_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 24 17:56:51 GMT 2021
    - 485 bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+periodic+java-matrix.yml

    ---
    jjbb-template: matrix-gradle-unix.yml
    vars:
      - job-name: elastic+elasticsearch+%BRANCH%+periodic+java-matrix
      - job-display-name: "elastic / elasticsearch # %BRANCH% - java compatibility matrix"
      - job-description: "Testing of the Elasticsearch %BRANCH% branch java compatibility matrix.\n"
      - matrix-yaml-file: ".ci/matrix-runtime-javas.yml"
      - matrix-variable: ES_RUNTIME_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 439 bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+periodic+java-matrix-trigger.yml

    ---
    jjbb-template: periodic-trigger-lgc.yml
    vars:
      - periodic-job: elastic+elasticsearch+%BRANCH%+periodic+java-matrix
      - lgc-job: elastic+elasticsearch+%BRANCH%+intake
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 196 bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+periodic+bwc.yml

    ---
    jjbb-template: matrix-gradle-unix.yml
    vars:
      - job-name: elastic+elasticsearch+%BRANCH%+periodic+bwc
      - job-display-name: "elastic / elasticsearch # %BRANCH% - backwards compatibility matrix"
      - job-description: "Testing of the Elasticsearch %BRANCH% branch backwards compatibility matrix.\n"
      - matrix-yaml-file: ".ci/bwcVersions"
      - matrix-variable: BWC_VERSION
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 440 bytes
    - Click Count (0)
  9. tensorflow/c/eager/c_api_test_util.h

    // Return a tensor handle containing a 2x2 matrix of doubles
    TFE_TensorHandle* DoubleTestMatrixTensorHandle(TFE_Context* ctx);
    
    // Return a tensor handle containing a 2x2 matrix of floats
    TFE_TensorHandle* TestMatrixTensorHandle(TFE_Context* ctx);
    
    // Return a tensor handle containing 2D matrix containing given data and
    // dimensions
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Jul 17 23:43:59 GMT 2023
    - 7.7K bytes
    - Click Count (0)
  10. .github/workflows/tests.yml

    jobs:
      # Label of the container job
      sqlite:
        strategy:
          matrix:
            go: ['stable', 'oldstable']
            platform: [ubuntu-latest] # can not run in windows OS
        runs-on: ${{ matrix.platform }}
    
        steps:
        - name: Set up Go 1.x
          uses: actions/setup-go@v5
          with:
            go-version: ${{ matrix.go }}
    
        - name: Check out code into the Go module directory
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Mar 23 10:05:06 GMT 2026
    - 9K bytes
    - Click Count (0)
Back to Top