Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 659 for skip1 (0.2 seconds)

  1. docs/debugging/inspect/export.go

    		var key, val []byte
    		key, buf, e = msgp.ReadMapKeyZC(buf)
    		if e != nil {
    			return nil, e
    		}
    		if len(key) == 0 {
    			return nil, fmt.Errorf("xlMetaInlineData: key %d is length 0", i)
    		}
    		// Skip data...
    		val, buf, e = msgp.ReadBytesZC(buf)
    		if e != nil {
    			return nil, e
    		}
    		if i > 0 {
    			res = append(res, ',')
    		}
    		s := fmt.Sprintf(`"%s":%d`, string(key), len(val))
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 9.2K bytes
    - Click Count (1)
  2. cmd/encryption-v1.go

    					buckets = append(buckets, object.Bucket)
    					names = append(names, object.Name)
    				}
    			}
    		}
    
    		// If there are no SSE-S3 single-part objects
    		// we can skip the decryption process. However,
    		// we still have to adjust the size and ETag
    		// of SSE-C and SSE-KMS objects.
    		if len(SSES3SinglePartObjects) == 0 {
    			for i := range batch {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 38K bytes
    - Click Count (0)
  3. cmd/erasure.go

    	var scanningInfos, healingInfos []DiskInfo
    
    	for i, info := range infos {
    		// Check if one of the drives in the set is being healed.
    		// this information is used by scanner to skip healing
    		// this erasure set while it calculates the usage.
    		if info.Error != "" || disks[i] == nil {
    			continue
    		}
    		if info.Healing {
    			healing++
    			if inclHealing {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 16.1K bytes
    - Click Count (0)
  4. docs/en/docs/python-types.md

    But even if you never use **FastAPI**, you would benefit from learning a bit about them.
    
    /// note
    
    If you are a Python expert, and you already know everything about type hints, skip to the next chapter.
    
    ///
    
    ## Motivation { #motivation }
    
    Let's start with a simple example:
    
    {* ../../docs_src/python_types/tutorial001_py310.py *}
    
    Calling this program outputs:
    
    ```
    John Doe
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/tutorial/dependencies/index.md

    就這樣。
    
    僅僅兩行。
    
    而且它的外觀與結構和你的所有「路徑操作函式」一樣。
    
    你可以把它想成一個沒有「裝飾器」(沒有 `@app.get("/some-path")`)的「路徑操作函式」。
    
    它可以回傳你想要的任何東西。
    
    在這個例子中,這個依賴會期望:
    
    * 一個選用的查詢參數 `q`,型別為 `str`。
    * 一個選用的查詢參數 `skip`,型別為 `int`,預設為 `0`。
    * 一個選用的查詢參數 `limit`,型別為 `int`,預設為 `100`。
    
    然後它只會回傳一個包含這些值的 `dict`。
    
    /// info | 說明
    
    FastAPI 在 0.95.0 版新增了對 `Annotated` 的支援(並開始建議使用)。
    
    如果你使用較舊的版本,嘗試使用 `Annotated` 時會出現錯誤。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  6. cmd/bucket-metadata_gen.go

    			z.BucketTargetsConfigMetaUpdatedAt, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "BucketTargetsConfigMetaUpdatedAt")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *BucketMetadata) EncodeMsg(en *msgp.Writer) (err error) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                while ((list = csvReader.readValues()) != null) {
                    final String suggestWord = getValue(list, 0);
                    if (StringUtil.isBlank(suggestWord)) {
                        // skip
                        continue;
                    }
                    try {
                        final String[] permissions = split(getValue(list, 2), ",").get(stream -> stream.map(permissionHelper::encode)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 18.3K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

      }
    
      public void testSize() throws IOException {
        assertEquals(bytes.length, source.size());
        assertTrue(source.wasStreamOpened() && source.wasStreamClosed());
    
        // test that we can get the size even if skip() isn't supported
        assertEquals(bytes.length, new TestByteSource(bytes, SKIP_THROWS).size());
    
        // test that we can get the size even if available() always returns zero
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/ImmutableSet.java

       * type conveys the immutability guarantee.
       */
      public static <E> ImmutableSet<E> of(E e1) {
        return new SingletonImmutableSet<>(e1);
      }
    
      /*
       * TODO: b/315526394 - Skip the Builder entirely for the of(...) methods, since we don't need to
       * worry that we might trigger the fallback to the JDK-backed implementation? (The varargs one
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Nov 07 16:09:47 GMT 2025
    - 35.3K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/dependencies/index.md

    Et elle peut retourner tout ce que vous voulez.
    
    Dans ce cas, cette dépendance attend :
    
    * Un paramètre de requête optionnel `q` qui est une `str`.
    * Un paramètre de requête optionnel `skip` qui est un `int`, et vaut `0` par défaut.
    * Un paramètre de requête optionnel `limit` qui est un `int`, et vaut `100` par défaut.
    
    Puis elle retourne simplement un `dict` contenant ces valeurs.
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11.1K bytes
    - Click Count (0)
Back to Top