Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 75 for Black (0.02 seconds)

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

  1. internal/s3select/jstream/README.md

    3	111	117	string | "cyan"
    3	119	128	string | "magenta"
    3	130	138	string | "yellow"
    3	140	147	string | "black"
    2	109	149	array  | ["cyan","magenta","yellow","black"]
    1	073	153	object | {"colors":["cyan","magenta","yellow","black"],"desc":"CMYK"}
    0	000	155	array  | [{"colors":["red","green","blue"],"desc":"RGB"},{"colors":["cyan","magenta","yellow","black"],"desc":"CMYK"}]
    ```
    
    ### Options
    
    Opt | Description
    --- | ---
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 23 19:35:41 GMT 2024
    - 3.2K bytes
    - Click Count (0)
  2. .ci/jobs.t/elastic+elasticsearch+pull-request+part-2-fips.yml

              github-hooks: true
              status-context: elasticsearch-ci/part-2-fips
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - 'Team:Security'
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 16 01:16:48 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  3. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-upgrade-tests.yml

              status-context: elasticsearch-ci/packaging-upgrade-tests
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - ':Delivery/Packaging'
              black-list-labels:
                - '>test-mute'
        axes:
          - axis:
              type: label-expression
              name: os
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 10 19:43:38 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+pull-request+part-1-fips.yml

              github-hooks: true
              status-context: elasticsearch-ci/part-1-fips
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - 'Team:Security'
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 16 01:16:48 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+pull-request+eql-correctness.yml

              github-hooks: true
              status-context: elasticsearch-ci/eql-correctness
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix-sample.yml

              github-hooks: true
              status-context: elasticsearch-ci/packaging-tests-unix-sample
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              black-list-labels:
                - '>test-mute'
                - ':Delivery/Packaging'
        axes:
          - axis:
              type: label-expression
              name: os
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+pull-request+part-1-windows.yml

              github-hooks: true
              status-context: elasticsearch-ci/part-1-windows
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - 'test-windows'
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 22:34:45 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk.yml

              cancel-builds-on-update: true
              # We've removed the no-jdk distribution on master as well
              black-list-target-branches:
                - master
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - ':Delivery/Packaging'
              black-list-labels:
                - '>test-mute'
        axes:
          - axis:
              type: label-expression
              name: os
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 19:49:58 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  9. .ci/templates.t/pull-request-gradle-unix.yml

              github-hooks: true
              status-context: elasticsearch-ci/{pr-job}
              cancel-builds-on-update: true
              excluded-regions:
                - ^docs/.*
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
                JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  10. ci/official/utilities/convert_msys_paths_to_win_paths.py

    """
    
    import argparse
    import os
    
    
    def should_convert(var_name: str,
                       blacklist: list[str] | None,
                       whitelist_prefix: list[str] | None):
      """Check the variable name against white/black lists."""
      if blacklist and var_name in blacklist:
        return False
      if not whitelist_prefix:
        return True
    
      for prefix in whitelist_prefix:
        if var_name.startswith(prefix):
          return True
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Aug 07 23:01:25 GMT 2024
    - 2.5K bytes
    - Click Count (0)
Back to Top