Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 835 for origines (0.28 seconds)

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

  1. docs/distributed/decom.sh

    expanded_policy_count=$(./mc admin policy list myminio/ | wc -l)
    
    if [ $user_count -ne $expanded_user_count ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ $policy_count -ne $expanded_policy_count ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon May 27 19:17:46 GMT 2024
    - 6.4K bytes
    - Click Count (0)
  2. docs/es/docs/advanced/json-base64-bytes.md

    JSON solo puede contener strings codificados en UTF-8, así que no puede contener bytes crudos.
    
    Base64 puede codificar datos binarios en strings, pero para hacerlo necesita usar más caracteres que los datos binarios originales, así que normalmente sería menos eficiente que los archivos normales.
    
    Usa base64 solo si definitivamente necesitas incluir datos binarios en JSON y no puedes usar archivos para eso.
    
    ## Pydantic `bytes` { #pydantic-bytes }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. src/test/java/jcifs/spnego/SpnegoExceptionTest.java

            // Given
            SpnegoException original = new SpnegoException("serialize me", new IllegalArgumentException("iaex"));
    
            // When
            byte[] bytes;
            try (ByteArrayOutputStream bout = new ByteArrayOutputStream(); ObjectOutputStream oout = new ObjectOutputStream(bout)) {
                oout.writeObject(original);
                oout.flush();
                bytes = bout.toByteArray();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

          <K, V> ReferenceEntry<K, V> copyEntry(
              Segment<K, V> segment,
              ReferenceEntry<K, V> original,
              ReferenceEntry<K, V> newNext,
              K key) {
            ReferenceEntry<K, V> newEntry = super.copyEntry(segment, original, newNext, key);
            copyAccessEntry(original, newEntry);
            copyWriteEntry(original, newEntry);
            return newEntry;
          }
        },
        WEAK {
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

         *
         * @param originalMessage the original user message
         * @return the fallback search intent result
         */
        public static IntentDetectionResult fallbackSearch(final String originalMessage) {
            return new IntentDetectionResult(ChatIntent.SEARCH, originalMessage, null, "Fallback: using original message as query");
        }
    
        @Override
        public String toString() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

     * character sequence. The mapping supports both original values and new values for update operations.</p>
     */
    public class CharMappingItem extends DictionaryItem {
        /**
         * Array of input character sequences that will be mapped to the output sequence.
         * These represent the original/current input values for this mapping rule.
         */
        private final String[] inputs;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  7. docs/es/docs/advanced/behind-a-proxy.md

    ```
    
    El **proxy** intercepta el request original del cliente y añade los *headers* especiales de reenvío (`X-Forwarded-*`) antes de pasar el request al **application server**.
    
    Estos headers preservan información sobre el request original que de otro modo se perdería:
    
    * **X-Forwarded-For**: La IP original del cliente
    * **X-Forwarded-Proto**: El protocolo original (`https`)
    * **X-Forwarded-Host**: El host original (`mysuperapp.com`)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Returns the original project being built when the input project is a forked project.
         * During certain lifecycle phases, particularly for aggregator mojos, Maven may create
         * a forked project (a copy of the original project) to execute a subset of the lifecycle.
         * This method allows retrieving the original project that initiated the build.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jan 30 23:29:13 GMT 2025
    - 12K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/cors.md

    # CORS(跨來源資源共用) { #cors-cross-origin-resource-sharing }
    
    [CORS 或「Cross-Origin Resource Sharing」](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)指的是:當在瀏覽器中執行的前端以 JavaScript 與後端通訊,而後端與前端位於不同「來源(origin)」時的情境。
    
    ## 來源(Origin) { #origin }
    
    一個來源是由通訊協定(`http`、`https`)、網域(`myapp.com`、`localhost`、`localhost.tiangolo.com`)與連接埠(`80`、`443`、`8080`)三者組合而成。
    
    因此,以下皆是不同的來源:
    
    * `http://localhost`
    * `https://localhost`
    * `http://localhost:8080`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5K bytes
    - Click Count (0)
  10. guava/src/com/google/common/base/CharMatcher.java

        final CharMatcher original;
    
        Negated(CharMatcher original) {
          this.original = checkNotNull(original);
        }
    
        @Override
        public boolean matches(char c) {
          return !original.matches(c);
        }
    
        @Override
        public boolean matchesAllOf(CharSequence sequence) {
          return original.matchesNoneOf(sequence);
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
Back to Top