Search Options

Results per page
Sort
Preferred Languages
Advance

Results 671 - 680 of 799 for dist (0.03 sec)

  1. cmd/erasure-metadata.go

    	// Start writing `xl.meta` to all disks in parallel.
    	for index := range disks {
    		g.Go(func() error {
    			if disks[index] == nil {
    				return errDiskNotFound
    			}
    			// Pick one FileInfo for a disk at index.
    			fi := files[index]
    			fi.Erasure.Index = index + 1
    			if fi.IsValid() {
    				return disks[index].WriteMetadata(ctx, origbucket, bucket, prefix, fi)
    			}
    			return errFileCorrupt
    		}, index)
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          } else if (collection instanceof List) {
            return Collections.unmodifiableList((List<E>) collection);
          } else {
            return Collections.unmodifiableCollection(collection);
          }
        }
    
        @Override
        Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) {
          if (collection instanceof List) {
            return wrapList(key, (List<V>) collection, null);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

          } else if (collection instanceof List) {
            return Collections.unmodifiableList((List<E>) collection);
          } else {
            return Collections.unmodifiableCollection(collection);
          }
        }
    
        @Override
        Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) {
          if (collection instanceof List) {
            return wrapList(key, (List<V>) collection, null);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    * fix: retry detach azure disk issue ([#78700](https://github.com/kubernetes/kubernetes/pull/78700), [@andyzhangx](https://github.com/andyzhangx))
        * try to only update vm if detach a non-existing disk when got <200, error> after detach disk operation
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            exception = new SmbOperationException(SmbOperationException.ErrorCode.DISK_FULL, null);
            assertTrue(exception.getMessage().contains("DISK_FULL"));
            assertTrue(exception.getMessage().contains("Disk full"));
        }
    
        @Test
        @DisplayName("Should have correct retryable flags for error codes")
        void testErrorCodeRetryableFlags() {
            // Retryable errors
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. docs/distributed/README.md

    ### Consistency Guarantees
    
    MinIO follows strict **read-after-write** and **list-after-write** consistency model for all i/o operations both in distributed and standalone modes. This consistency model is only guaranteed if you use disk filesystems such as xfs, zfs or btrfs etc.. for distributed setup.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/first-steps.md

    ///
    
    ### Schritt 4: Definieren der **Pfadoperation-Funktion**
    
    Das ist unsere โ€ž**Pfadoperation-Funktion**โ€œ:
    
    * **Pfad**: ist `/`.
    * **Operation**: ist `get`.
    * **Funktion**: ist die Funktion direkt unter dem โ€žDekoratorโ€œ (unter `@app.get("/")`).
    
    {* ../../docs_src/first_steps/tutorial001.py hl[7] *}
    
    Dies ist eine Python-Funktion.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. docs/em/docs/advanced/custom-response.md

    ///
    
    ### `Response`
    
    ๐Ÿ‘‘ `Response` ๐ŸŽ“, ๐ŸŒ ๐ŸŽ ๐Ÿ“จ ๐Ÿ˜– โšช๏ธโžก๏ธ โšซ๏ธ.
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ“จ โšซ๏ธ ๐Ÿ”—.
    
    โšซ๏ธ ๐Ÿšซ ๐Ÿ“„ ๐Ÿ”ข:
    
    * `content` - `str` โš–๏ธ `bytes`.
    * `status_code` - `int` ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘” ๐Ÿ“Ÿ.
    * `headers` - `dict` ๐ŸŽป.
    * `media_type` - `str` ๐Ÿค ๐Ÿ“ป ๐Ÿ†Ž. ๐Ÿคถ โ“‚. `"text/html"`.
    
    FastAPI (๐Ÿค™ ๐Ÿ’ƒ) ๐Ÿ”œ ๐Ÿ” ๐Ÿ”Œ ๐ŸŽš-๐Ÿ“ ๐ŸŽš. โšซ๏ธ ๐Ÿ”œ ๐Ÿ”Œ ๐ŸŽš-๐Ÿ†Ž ๐ŸŽš, โš“๏ธ ๐Ÿ”› = &amp; ๐Ÿ” = โœ ๐Ÿ†Ž.
    
    {* ../../docs_src/response_directly/tutorial002.py hl[1,18] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

            public byte[] getName() {
                return name;
            }
    
            @Override
            public int encode(byte[] dst, int dstIndex) {
                encodeCallCount++;
                if (throwOnEncode) {
                    throw new RuntimeException("Test encode error");
                }
                if (dst == null) {
                    throw new IllegalArgumentException("Destination buffer cannot be null");
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. docs/ja/docs/advanced/custom-response.md

    ///
    
    ### `Response`
    
    ใƒกใ‚คใƒณใฎ `Response` ใ‚ฏใƒฉใ‚นใงใ€ไป–ใฎๅ…จใฆใฎใƒฌใ‚นใƒใƒณใ‚นใฏใ“ใ‚Œใ‚’็ถ™ๆ‰ฟใ—ใฆใ„ใพใ™ใ€‚
    
    ็›ดๆŽฅ่ฟ”ใ™ใ“ใจใŒใงใใพใ™ใ€‚
    
    ไปฅไธ‹ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใ‚’ๅ—ใ‘ไป˜ใ‘ใพใ™ใ€‚
    
    * `content` - `str` ใ‹ `bytes`ใ€‚
    * `status_code` - `int` ใฎHTTPใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ€‚
    * `headers` - ๆ–‡ๅญ—ๅˆ—ใฎ `dict` ใ€‚
    * `media_type` - ใƒกใƒ‡ใ‚ฃใ‚ขใ‚ฟใ‚คใƒ—ใ‚’็คบใ™ `str` ใ€‚ไพ‹ใˆใฐ `"text/html"` ใ€‚
    
    FastAPI (ๅฎŸ้š›ใซใฏStarlette) ใฏ่‡ชๅ‹•็š„ใซContent-Lengthใƒ˜ใƒƒใƒ€ใƒผใ‚’ๅซใฟใพใ™ใ€‚ใพใŸใ€media_typeใซๅŸบใฅใ„ใŸContent-Typeใƒ˜ใƒƒใƒ€ใƒผใ‚’ๅซใฟใ€ใƒ†ใ‚ญใ‚นใƒˆใ‚ฟใ‚คใƒ—ใฎใŸใ‚ใซcharsetใ‚’่ฟฝๅŠ ใ—ใพใ™ใ€‚
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top