Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 281 - 290 of 388 for PRINT (0.03 seconds)

  1. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.print("aaa", OptionalThing.empty(), Map.of());
            assertEquals("action:AAA\tuser:-", localLogMsg.get());
    
            activityHelper.print("aaa bbb", createUser("testuser", new String[0]), Map.of("111", "222"));
            assertEquals("action:AAA BBB\tuser:testuser\t111:222", localLogMsg.get());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  2. docs/en/docs/virtual-environments.md

    ///
    
    <div class="termy">
    
    ```console
    $ echo "*" > .venv/.gitignore
    ```
    
    </div>
    
    /// details | What that command means
    
    * `echo "*"`: will "print" the text `*` in the terminal (the next part changes that a bit)
    * `>`: anything printed to the terminal by the command to the left of `>` should not be printed but instead written to the file that goes to the right of `>`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_complex_doc/data/translated_doc.md

    ```python
    #Объявление функции
    def hello_world():# Печать приветствия
        print("Hello, world!")  #Печать приветствия без пробела после решётки
    ```
    
    ```console
    //Объявление функции
    def hello_world():// Печать приветствия
        print("Hello, world!")  //Печать приветствия без пробела после слешей
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 08:08:04 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperRunner.java

        public static void main(String[] args) {
            List<CIInfo> detect = CIDetectorHelper.detectCI();
            if (detect.isEmpty()) {
                System.out.print("NONE;");
            } else {
                detect.forEach(d -> System.out.print(d.name() + (d.isVerbose() ? "+VERBOSE" : "") + ";"));
            }
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                        }
                    }
                    buf.append('}');
                    buf.append('\n');
                    try {
                        response.getWriter().print(buf.toString());
                    } catch (final IOException e) {
                        throw new IORuntimeException(e);
                    }
                    return true;
                }, OptionalThing.empty());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  6. android/guava/src/com/google/common/collect/Streams.java

       * {@snippet :
       * Streams.forEachPair(
       *     Stream.of("foo1", "foo2", "foo3"),
       *     Stream.of("bar1", "bar2"),
       *     (arg1, arg2) -> System.out.println(arg1 + ":" + arg2)
       * }
       *
       * <p>will print:
       *
       * {@snippet :
       * foo1:bar1
       * foo2:bar2
       * }
       *
       * <p><b>Warning:</b> If either supplied stream is a parallel stream, the same correspondence
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.7.md

    * Get command uses OpenAPI schema to enhance display for a resource if run with flag 'use-openapi-print-columns'.  ([#46235](https://github.com/kubernetes/kubernetes/pull/46235), [@droot](https://github.com/droot))
        * An example command:
        * kubectl get pods --use-openapi-print-columns
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Click Count (1)
  8. docs/uk/docs/advanced/advanced-python-types.md

    Наприклад, ви можете оголосити, що щось може бути `str` або `None`:
    
    ```python
    from typing import Union
    
    
    def say_hi(name: Union[str, None]):
            print(f"Hi {name}!")
    ```
    
    У `typing` також є скорочення, щоб оголосити, що щось може бути `None`, - `Optional`.
    
    Ось порада з моєї дуже «суб'єктивної» точки зору:
    
    - 🚨 Уникайте використання `Optional[SomeType]`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:43:14 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/transfer/ConsoleMavenTransferListener.java

                }
            }
    
            int pad = lastLength - buffer.length();
            lastLength = buffer.length();
            pad(buffer, pad);
            buffer.append('\r');
            out.print(buffer);
            out.flush();
            buffer.setLength(0);
        }
    
        private void pad(StringBuilder buffer, int spaces) {
            String block = "                                        ";
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Nov 22 14:09:32 GMT 2024
    - 5.2K bytes
    - Click Count (0)
  10. docs/es/docs/advanced/advanced-python-types.md

    Por ejemplo, podrías declarar que algo podría ser un `str` o `None`:
    
    ```python
    from typing import Union
    
    
    def say_hi(name: Union[str, None]):
            print(f"Hi {name}!")
    ```
    
    `typing` también tiene un atajo para declarar que algo podría ser `None`, con `Optional`.
    
    Aquí va un Consejo desde mi punto de vista muy subjetivo:
    
    * 🚨 Evita usar `Optional[SomeType]`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 2.1K bytes
    - Click Count (0)
Back to Top