Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1711 - 1720 of 1,790 for become (0.2 seconds)

  1. docs/ko/docs/tutorial/query-params-str-validations.md

    /// tip | 팁
    
    Pydantic에는 [BeforeValidator](https://docs.pydantic.dev/latest/concepts/validators/#field-before-validator)와 같은 다른 것들도 있습니다. 🤓
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  2. cmd/metacache-entries.go

    		// Empty entry
    		if entry.name == "" {
    			continue
    		}
    
    		if entry.isDir() {
    			dirExists++
    			selected = entry
    			continue
    		}
    
    		// Get new entry metadata,
    		// shallow decode.
    		xl, err := entry.xlmeta()
    		if err != nil {
    			continue
    		}
    		objsValid++
    
    		// Add all valid to candidates.
    		r.candidates = append(r.candidates, xl.versions)
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 08 15:29:58 GMT 2024
    - 24.1K bytes
    - Click Count (0)
  3. docs/ko/docs/deployment/concepts.md

    /// tip | 팁
    
    **컨테이너**, Docker, Kubernetes에 대한 일부 내용이 아직은 잘 이해되지 않아도 괜찮습니다.
    
    다음 장에서 컨테이너 이미지, Docker, Kubernetes 등을 더 설명하겠습니다: [컨테이너에서 FastAPI - Docker](docker.md).
    
    ///
    
    ## 시작 전 사전 단계 { #previous-steps-before-starting }
    
    애플리케이션을 **시작하기 전에** 어떤 단계를 수행하고 싶은 경우가 많습니다.
    
    예를 들어 **데이터베이스 마이그레이션**을 실행하고 싶을 수 있습니다.
    
    하지만 대부분의 경우, 이런 단계는 **한 번만** 수행하고 싶을 것입니다.
    
    그래서 애플리케이션을 시작하기 전에 그 **사전 단계**를 수행할 **단일 프로세스**를 두고 싶을 것입니다.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/ImmutableSortedSet.java

       *         .build();
       * }
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple sets in series. Each set is a superset of the set created before it.
       *
       * @since 2.0
       */
      public static final class Builder<E> extends ImmutableSet.Builder<E> {
        private final Comparator<? super E> comparator;
        private E[] elements;
        private int n;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 39.1K bytes
    - Click Count (0)
  5. docs/fr/docs/deployment/docker.md

    ## Étapes préalables au démarrage et conteneurs { #previous-steps-before-starting-and-containers }
    
    Si vous utilisez des conteneurs (par ex. Docker, Kubernetes), alors il existe deux approches principales que vous pouvez utiliser.
    
    ### Plusieurs conteneurs { #multiple-containers }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 32.3K bytes
    - Click Count (0)
  6. src/archive/tar/writer_test.go

    	// Simple test to make sure PAX extensions are in effect
    	if !bytes.Contains(buf.Bytes(), []byte("PaxHeaders.0")) {
    		t.Fatal("Expected at least one PAX header to be written.")
    	}
    
    	// xattr bar should always appear before others
    	indices := []int{
    		bytes.Index(buf.Bytes(), []byte("bar=bar")),
    		bytes.Index(buf.Bytes(), []byte("baz=baz")),
    		bytes.Index(buf.Bytes(), []byte("foo=foo")),
    		bytes.Index(buf.Bytes(), []byte("qux=qux")),
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Dec 15 16:34:13 GMT 2025
    - 40.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemBoundaryTest.java

            assertEquals(50L, item.getDocFreq());
            assertEquals(2.0f, item.getUserBoost(), 0.001f);
        }
    
        @Test
        public void test_parseSource_stringFrequencies() {
            // Sometimes values come as String instead of Long
            Map<String, Object> source = new HashMap<>();
            source.put(FieldNames.TEXT, "test");
            source.put(FieldNames.QUERY_FREQ, "100");
            source.put(FieldNames.DOC_FREQ, "50");
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Jan 17 05:10:37 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  8. docs/en/docs/release-notes.md

            * Reading a body before and/or after a request (equivalent to a middleware).
            * Run middleware-like code only for a subset of *path operations*.
            * Process a request before passing it to a *path operation function*. E.g. decompressing, deserializing, etc.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/hash/BloomFilter.java

      }
    
      /**
       * Returns the number of bytes required to serialize this bloom filter using the {@link
       * #writeTo(OutputStream)} method. This method can be useful if you need to know the serialization
       * size before writing to pre-allocated space (e.g., for memory-mapped files or fixed-size
       * records).
       *
       * @since NEXT
       */
      public long serializedSize() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 10 22:28:12 GMT 2026
    - 27.6K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            if (Artifact.SCOPE_PROVIDED.equals(inheritedScope)) {
                desiredScope = Artifact.SCOPE_PROVIDED;
            }
    
            if (Artifact.SCOPE_SYSTEM.equals(scope)) {
                // system scopes come through unchanged...
                desiredScope = Artifact.SCOPE_SYSTEM;
            }
    
            ArtifactHandler handler = artifactHandlerManager.getArtifactHandler(type);
    
            return new DefaultArtifact(
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 33.5K bytes
    - Click Count (0)
Back to Top