Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 388 for PRINT (0.02 seconds)

  1. build-tools-internal/src/main/resources/templates/release-notes.asciidoc

        print "\n${team}::\n";
    
        for (change in changelogsByVersionByTypeByArea[version][changeType][team]) {
            print "* ${change.summary} {es-pull}${change.pr}[#${change.pr}]"
            if (change.issues != null && change.issues.empty == false) {
                print change.issues.size() == 1 ? " (issue: " : " (issues: "
                print change.issues.collect { "{es-issue}${it}[#${it}]" }.join(", ")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  2. scripts/translate.py

                continue
            missing_paths.append(p)
        print("Paths to skip:")
        for p in skipped_paths:
            print(f"  - {p}")
        print(f"Total paths to skip: {len(skipped_paths)}")
        print("Paths to process:")
        for p in missing_paths:
            print(f"  - {p}")
        print(f"Total paths to process: {len(missing_paths)}")
        for p in missing_paths:
            print(f"Translating: {p}")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md

    ```python
    #Function declaration
    def hello_world():# Print greeting
        print("Hello, world!")  #Print greeting without space after hash
    ```
    
    ```console
    //Function declaration
    def hello_world():// Print greeting
        print("Hello, world!")  //Print greeting without space after slashes
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 08:08:04 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  4. helm/minio/templates/configmap.yaml

        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    data:
      initialize: |-
        {{- include (print $.Template.BasePath "/_helper_create_bucket.txt") . | nindent 4 }}
      add-user: |-
        {{- include (print $.Template.BasePath "/_helper_create_user.txt") . | nindent 4 }}
      add-policy: |-
        {{- include (print $.Template.BasePath "/_helper_create_policy.txt") . | nindent 4 }}
      {{- range $idx, $policy := .Values.policies }}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.2K bytes
    - Click Count (0)
  5. helm/minio/templates/_helpers.tpl

        {{- print "apps/v1beta2" -}}
      {{- else -}}
        {{- print "apps/v1" -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Return the appropriate apiVersion for statefulset.
    */}}
    {{- define "minio.statefulset.apiVersion" -}}
      {{- if semverCompare "<1.16-0" .Capabilities.KubeVersion.Version -}}
        {{- print "apps/v1beta2" -}}
      {{- else -}}
        {{- print "apps/v1" -}}
      {{- end -}}
    {{- end -}}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Aug 06 23:48:24 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/resources/templates/breaking-changes.asciidoc

        breakingChangesByArea.eachWithIndex { area, breakingChanges, i ->
            print "\n"
    
            if (isNotable) {
                print "// tag::notable-breaking-changes[]\n"
            }
    
            print "[discrete]\n"
            print "[[breaking_${majorMinor}_${ area.toLowerCase().replaceAll("[^a-z0-9]+", "_") }]]\n"
            print "==== ${area}\n"
    
            for (breaking in breakingChanges) { %>
    [[${ breaking.anchor }]]
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  7. ci/official/utilities/extract_resultstore_links.py

        tree.write(f)
        if verbose:
          print(f'\nWrote XML with Bazel invocation results to {file_path}')
    
    
    def print_invocation_results(result_store_dict: ResultDictType):
      """Prints out a short summary of the found ResultStore links (if any)."""
      print()
      if not result_store_dict:
        print('Found no ResultStore links for Bazel build/test invocations.')
      else:
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Click Count (0)
  8. docs/select/select.py

        if 'Records' in event:
            records = event['Records']['Payload'].decode('utf-8')
            print(records)
        elif 'Stats' in event:
            statsDetails = event['Stats']['Details']
            print("Stats details bytesScanned: ")
            print(statsDetails['BytesScanned'])
            print("Stats details bytesProcessed: ")
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat Aug 18 00:11:39 GMT 2018
    - 1K bytes
    - Click Count (1)
  9. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java

         */
        @Override
        public void debug(CharSequence content) {
            print("debug", content);
        }
    
        /**
         * @see org.apache.maven.plugin.logging.Log#debug(java.lang.CharSequence, java.lang.Throwable)
         */
        @Override
        public void debug(CharSequence content, Throwable error) {
            print("debug", content, error);
        }
    
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. ci/official/utilities/cleanup_summary.sh

    Try the links below:
    EOF
      # Find any "Streaming build results to" lines,
      # de-duplicate,
      # and print the last word from each
      awk '/Streaming build results to/ {print $NF}' "$TFCI_OUTPUT_DIR/script.log" | uniq
    }
    
    # Print out any ResultStore URLs for Bazel invocations' results.
    # Each failed target there will have its own representation, making failures
    # easier to find and read.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 09 18:37:25 GMT 2025
    - 1.8K bytes
    - Click Count (0)
Back to Top