Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 469 for Signer (0.04 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

    1. public NavigableSet<E> headSet(E toElement, boolean inclusive) {
    2. return new SafeTreeSet<>(delegate.headSet(checkValid(toElement), inclusive));
    3. }
    4.  
    5. @Override
    6. public @Nullable E higher(E e) {
    7. return delegate.higher(checkValid(e));
    8. }
    9.  
    10. @Override
    11. public boolean isEmpty() {
    12. return delegate.isEmpty();
    13. }
    14.  
    15. @Override
    16. public Iterator<E> iterator() {
    17. return delegate.iterator();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Fingerprint2011.java

    1. * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds.
    2. *
    3. * <p>Note to maintainers: This implementation relies on signed arithmetic being bit-wise equivalent
    4. * to unsigned arithmetic in all cases except:
    5. *
    6. * <ul>
    7. * <li>comparisons (signed values can be negative)
    8. * <li>division (avoided here)
    9. * <li>shifting (right shift must be unsigned)
    10. * </ul>
    11. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

    1. public class LoadingCacheSingleThreadBenchmark {
    2. @Param({"1000", "2000"})
    3. int maximumSize;
    4.  
    5. @Param("5000")
    6. int distinctKeys;
    7.  
    8. @Param("4")
    9. int segments;
    10.  
    11. // 1 means uniform likelihood of keys; higher means some keys are more popular
    12. // tweak this to control hit rate
    13. @Param("2.5")
    14. double concentration;
    15.  
    16. Random random = new Random();
    17.  
    18. LoadingCache<Integer, Integer> cache;
    19.  
    20. int max;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  4. docs_src/bigger_applications/app_an/main.py

    1. prefix="/admin",
    2. tags=["admin"],
    3. dependencies=[Depends(get_token_header)],
    4. responses={418: {"description": "I'm a teapot"}},
    5. )
    6.  
    7.  
    8. @app.get("/")
    9. async def root():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 552 bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/dependencies/global-dependencies.md

    1. ## Зависимости для групп *операций пути*
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. docs/de/docs/python-types.md

    1. Diese **„Typhinweise“** oder -Annotationen sind eine spezielle Syntax, die es erlaubt, den <abbr title="Zum Beispiel: str, int, float, bool">Typ</abbr> einer Variablen zu deklarieren.
    2.  
    3. Durch das Deklarieren von Typen für Ihre Variablen können Editoren und Tools bessere Unterstützung bieten.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/netns_linux_test.go

    1. import "testing"
    2.  
    3. func TestOpenNetns(t *testing.T) {
    4. ns, err := OpenNetns("/proc/self/ns/net")
    5. if err != nil {
    6. t.Fatalf("unexpected error: %v", err)
    7. }
    8. // the inode for netns is proc dynamic, so it needs to be higher than
    9. // #define PROC_DYNAMIC_FIRST 0xF0000000U
    10.  
    11. if ns.Inode() < 0xF0000000 {
    12. t.Fatalf("unexpected inode: %v", ns.Inode())
    13. }
    14. defer ns.Close()
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 976 bytes
    - Viewed (0)
  8. docs_src/bigger_applications/app_an_py39/main.py

    1. prefix="/admin",
    2. tags=["admin"],
    3. dependencies=[Depends(get_token_header)],
    4. responses={418: {"description": "I'm a teapot"}},
    5. )
    6.  
    7.  
    8. @app.get("/")
    9. async def root():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 552 bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    1. unless the memory it points to is pinned with [runtime.Pinner] and the
    2. Pinner is not unpinned while the Go pointer is stored in C memory.
    3. This implies that C code may not keep a copy of a string, slice,
    4. channel, and so forth, because they cannot be pinned with
    5. [runtime.Pinner].
    6.  
    7. The _GoString_ type also may not be pinned with [runtime.Pinner].
    8. Because it includes a Go pointer, the memory it points to is only pinned
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 01 22:52:54 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. docs/extensions/fan-out/README.md

    1. ## How to enable Fan-Out Uploads ?
    2.  
    3. Fan-Out uploads are automatically enabled if `x-minio-fanout-list` form-field is provided with the PostUpload API, to keep things simple higher level APIs are provided in our SDKs for example in `minio-go` SDK:
    4.  
    5. ```
    6. PutObjectFanOut(ctx context.Context, bucket string, fanOutContent io.Reader, fanOutReq minio.PutObjectFanOutRequest) ([]minio.PutObjectFanOutResponse, error)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top