Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for secuencial (0.11 sec)

  1. src/archive/tar/writer.go

    // license that can be found in the LICENSE file.
    
    package tar
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"maps"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // Writer provides sequential writing of a tar archive.
    // [Writer.WriteHeader] begins a new file with the provided [Header],
    // and then Writer can be treated as an io.Writer to supply that file's data.
    type Writer struct {
    	w    io.Writer
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 14:22:59 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

        return (fromList instanceof RandomAccess)
            ? new TransformingRandomAccessList<>(fromList, function)
            : new TransformingSequentialList<>(fromList, function);
      }
    
      /**
       * Implementation of a sequential transforming list.
       *
       * @see Lists#transform
       */
      private static class TransformingSequentialList<
              F extends @Nullable Object, T extends @Nullable Object>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. docs/em/docs/async.md

        # Do some asynchronous stuff to create the burgers
        return burgers
    ```
    
    ...โ†ฉ๏ธ `def`:
    
    ```Python hl_lines="2"
    # This is not asynchronous
    def get_sequential_burgers(number: int):
        # Do some sequential stuff to create the burgers
        return burgers
    ```
    
    โฎ๏ธ `async def`, ๐Ÿ ๐Ÿ’ญ ๐Ÿ‘ˆ, ๐Ÿ”˜ ๐Ÿ‘ˆ ๐Ÿ”ข, โšซ๏ธ โœ”๏ธ ๐Ÿค” `await` ๐Ÿงฌ, &amp; ๐Ÿ‘ˆ โšซ๏ธ ๐Ÿ’ช "โธ" โธ ๐Ÿ› ๏ธ ๐Ÿ‘ˆ ๐Ÿ”ข &amp; ๐Ÿšถ ๐Ÿ•ณ ๐Ÿ™† ๐Ÿ‘ถ โญ ๐Ÿ‘Ÿ ๐Ÿ”™.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    // license that can be found in the LICENSE file.
    
    package tar
    
    import (
    	"bytes"
    	"io"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    )
    
    // Reader provides sequential access to the contents of a tar archive.
    // Reader.Next advances to the next file in the archive (including the first),
    // and then Reader can be treated as an io.Reader to access the file's data.
    type Reader struct {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. docs/zh/docs/async.md

        # Do some asynchronous stuff to create the burgers
        return burgers
    ```
    
    ...่€Œไธๆ˜ฏ `def`:
    
    ```Python hl_lines="2"
    # This is not asynchronous
    def get_sequential_burgers(number: int):
        # Do some sequential stuff to create the burgers
        return burgers
    ```
    
    ไฝฟ็”จ `async def`๏ผŒPython ๅฐฑ็Ÿฅ้“ๅœจ่ฏฅๅ‡ฝๆ•ฐไธญ๏ผŒๅฎƒๅฐ†้‡ไธŠ `await`๏ผŒๅนถไธ”ๅฎƒๅฏไปฅ"ๆš‚ๅœ" โธ ๆ‰ง่กŒ่ฏฅๅ‡ฝๆ•ฐ๏ผŒ็›ด่‡ณๆ‰ง่กŒๅ…ถไป–ๆ“ไฝœ ๐Ÿ”€ ๅŽๅ›žๆฅใ€‚
    
    ๅฝ“ไฝ ๆƒณ่ฐƒ็”จไธ€ไธช `async def` ๅ‡ฝๆ•ฐๆ—ถ๏ผŒไฝ ๅฟ…้กป"็ญ‰ๅพ…"ๅฎƒใ€‚ๅ› ๆญค๏ผŒ่ฟ™ไธไผš่ตทไฝœ็”จ๏ผš
    
    ```Python
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. docs/ko/docs/async.md

        return burgers
    ```
    
    ...`def`๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๋Œ€์‹ :
    
    ```Python hl_lines="2"
    # This is not asynchronous
    def get_sequential_burgers(number: int):
        # Do some sequential stuff to create the burgers
        return burgers
    ```
    
    `async def`๋ฅผ ์‚ฌ์šฉํ•˜๋ฉด, ํŒŒ์ด์ฌ์€ ํ•ด๋‹น ํ•จ์ˆ˜ ๋‚ด์—์„œ `await` ํ‘œํ˜„์— ์ฃผ์˜ํ•ด์•ผํ•œ๋‹ค๋Š” ์‚ฌ์‹ค๊ณผ, ํ•ด๋‹น ํ•จ์ˆ˜์˜ ์‹คํ–‰์„ "์ผ์‹œ์ •์ง€"โธํ•˜๊ณ  ๋‹ค์‹œ ๋Œ์•„์˜ค๊ธฐ ์ „๊นŒ์ง€ ๋‹ค๋ฅธ ์ž‘์—…์„ ์ˆ˜ํ–‰๐Ÿ”€ํ•  ์ˆ˜ ์žˆ๋‹ค๋Š” ๊ฒƒ์„ ์•Œ๊ฒŒ๋ฉ๋‹ˆ๋‹ค.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Fixes API compatibility issue with empty lists incorrectly returning a null `items` field instead of an empty array. ([#39834](https://github.com/kubernetes/kubernetes/pull/39834), [@liggitt](https://github.com/liggitt))
    * AWS: Add sequential allocator for device names. ([#38818](https://github.com/kubernetes/kubernetes/pull/38818), [@jsafrane](https://github.com/jsafrane))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. RELEASE.md

            `train_step()`/`test_step()`/`predict_step()` methods, e.g. `if
            x.shape.rank == 1: x = tf.expand_dims(x, axis=-1)`. Functional models as
            well as Sequential models built with an explicit input shape are not
            affected.
        *   The methods `Model.to_yaml()` and `keras.models.model_from_yaml` have
            been replaced to raise a `RuntimeError` as they can be abused to cause
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    * Recognize ca-central-1 region ([#38410](https://github.com/kubernetes/kubernetes/pull/38410), [@justinsb](https://github.com/justinsb))
    * Add sequential allocator for device names. ([#38818](https://github.com/kubernetes/kubernetes/pull/38818), [@jsafrane](https://github.com/jsafrane))
    
    #### Azure
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

    * Fixed a race condition in k8s.io/client-go/tools/cache.SharedInformer that could violate the sequential delivery guarantee and cause panics on shutdown in Kubernetes 1.8.* and 1.9.*. ([#59828](https://github.com/kubernetes/kubernetes/pull/59828), [@krousey](https://github.com/krousey))
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top