Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for lima (0.13 sec)

  1. docs/compression/README.md

    - Extensions
    
     | `gz`  | (GZIP)      |
     | `bz2` | (BZIP2)     |
     | `rar` | (WinRAR)    |
     | `zip` | (ZIP)       |
     | `7z`  | (7-Zip)     |
     | `xz`  | (LZMA)      |
     | `mp4` | (MP4)       |
     | `mkv` | (MKV media) |
     | `mov` | (MOV)       |
    
    - Content-Types
    
     | `video/*`                |
     | `audio/*`                |
     | `application/zip`        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/runtime/syscall_aix.go

    	_, err = syscall2(&libc_setgroups, ngid, gid)
    	return
    }
    
    //go:linkname syscall_setrlimit1 syscall.setrlimit1
    //go:nosplit
    func syscall_setrlimit1(which uintptr, lim unsafe.Pointer) (err uintptr) {
    	_, err = syscall2(&libc_setrlimit, which, uintptr(lim))
    	return
    }
    
    //go:linkname syscall_setsid syscall.setsid
    //go:nosplit
    func syscall_setsid() (pid, err uintptr) {
    	pid, err = syscall0(&libc_setsid)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/extra-data-types.md

    * `frozenset`:
        * Em requisições e respostas, será tratado da mesma forma que um `set`:
            * Nas requisições, uma lista será lida, eliminando duplicadas e convertendo-a em um `set`.
            * Nas respostas, o `set` será convertido para uma `list`.
            * O esquema gerado vai especificar que os valores do `set` são unicos (usando o `uniqueItems` do JSON Schema).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

            int len2 = o.segments.length;
    
            if (len1 != len2) {
                return len1 - len2;
            }
    
            int lim = Math.min(len1, len2);
            String[] v1 = segments;
            String[] v2 = o.segments;
    
            int k = 0;
            while (k < lim) {
                String c1 = v1[k];
                String c2 = v2[k];
                int compareResult = c1 == c2 ? 0 : c1.compareTo(c2);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		//
    		// The spec requires us to set a bit just above the message size, not to
    		// hide leading zeroes. For full chunks, that's 1 << 128, so we can just
    		// add 1 to the most significant (2¹²⁸) limb, h2.
    		if len(msg) >= TagSize {
    			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0)
    			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(msg[8:16]), c)
    			h2 += c + 1
    
    			msg = msg[TagSize:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

                String rightPath = right.getPath();
    
                int len1 = leftPath.length();
                int len2 = rightPath.length();
                int lim = Math.min(len1, len2);
    
                int k = 0;
                while (k < lim) {
                    char c1 = leftPath.charAt(k);
                    char c2 = rightPath.charAt(k);
                    if (c1 != c2) {
                        if (c1 == File.separatorChar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/syscall/syscall_netbsd.go

    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/c/tf_tensor.h

    // memory managed by something like numpy.
    //
    // May return NULL (and invoke the deallocator) if the provided data buffer
    // (data, len) is inconsistent with a tensor of the given TF_DataType
    // and the shape specified by (dima, num_dims).
    TF_CAPI_EXPORT extern TF_Tensor* TF_NewTensor(
        TF_DataType, const int64_t* dims, int num_dims, void* data, size_t len,
        void (*deallocator)(void* data, size_t len, void* arg),
        void* deallocator_arg);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_dragonfly.go

    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/first-steps.md

    * a rota `/`
    * usando o  <abbr title="o método HTTP GET">operador <code>get</code></abbr>
    
    !!! info "`@decorador`"
        Essa sintaxe `@alguma_coisa` em Python é chamada de "decorador".
    
        Você o coloca em cima de uma função. Como um chapéu decorativo (acho que é daí que vem o termo).
    
        Um "decorador" pega a função abaixo e faz algo com ela.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top