Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for gint (0.06 sec)

  1. docs/recipes.md

              Gist gist = gistJsonAdapter.fromJson(response.body().source());
    
              for (Map.Entry<String, GistFile> entry : gist.files.entrySet()) {
                System.out.println(entry.getKey());
                System.out.println(entry.getValue().content);
              }
            }
          }
    
          static class Gist {
            Map<String, GistFile> files;
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  2. src/sort/zsortfunc.go

    func order2_func(data lessSwap, a, b int, swaps *int) (int, int) {
    	if data.Less(b, a) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median_func returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median_func(data lessSwap, a, b, c int, swaps *int) int {
    	a, b = order2_func(data, a, b, swaps)
    	b, c = order2_func(data, b, c, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/generate-clients.md

    ## OpenAPI-Client-Generatoren
    
    Es gibt viele Tools zum Generieren von Clients aus **OpenAPI**.
    
    Ein gängiges Tool ist <a href="https://openapi-generator.tech/" class="external-link" target="_blank">OpenAPI Generator</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

      declared in `pywrap_function_lib.PyFunctionLibrary`.
      """
    
      # LINT.IfChange(save_exported_model)
      def save_exported_model(
          self,
          dst_saved_model_path: str,
          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]:
        # LINT.ThenChange(py_function_lib.h:save_exported_model)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    			queryAAAA: true,
    		},
    		{
    			name: "udp: large request",
    			host: "giant.",
    			// Upstream UDP server returns big response, we cannot serve it. Compliant server would truncate it.
    			expectResolutionFailure: dns.RcodeServerFailure,
    		},
    		{
    			name:     "tcp: large request",
    			host:     "giant.",
    			expected: giantResponse,
    		},
    		{
    			name:                    "large request edns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_amd64.s

    	MOVQ	ts+8(FP), DX			// arg 3 - ts
    	MOVL	unpark+16(FP), R10		// arg 4 - unpark
    	MOVQ	hint+24(FP), R8			// arg 5 - hint
    	MOVQ	unparkhint+32(FP), R9		// arg 6 - unparkhint
    	MOVL	$SYS____lwp_park60, AX
    	SYSCALL
    	MOVL	AX, ret+40(FP)
    	RET
    
    TEXT runtime·lwp_unpark(SB),NOSPLIT,$0
    	MOVL	lwp+0(FP), DI		// arg 1 - lwp
    	MOVQ	hint+8(FP), SI		// arg 2 - hint
    	MOVL	$SYS__lwp_unpark, AX
    	SYSCALL
    	MOVL	AX, ret+16(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/slices/zsortanyfunc.go

    func order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {
    	if cmp(data[b], data[a]) < 0 {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {
    	a, b = order2CmpFunc(data, a, b, swaps, cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. src/slices/zsortordered.go

    func order2Ordered[E cmp.Ordered](data []E, a, b int, swaps *int) (int, int) {
    	if cmp.Less(data[b], data[a]) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // medianOrdered returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func medianOrdered[E cmp.Ordered](data []E, a, b, c int, swaps *int) int {
    	a, b = order2Ordered(data, a, b, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/net/textproto/reader.go

    	// slices. If this isn't big enough later, we allocate small ones.
    	var strs []string
    	hint := r.upcomingHeaderKeys()
    	if hint > 0 {
    		if hint > 1000 {
    			hint = 1000 // set a cap to avoid overallocation
    		}
    		strs = make([]string, hint)
    	}
    
    	m := make(MIMEHeader, hint)
    
    	// Account for 400 bytes of overhead for the MIMEHeader, plus 200 bytes per entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. docs/de/docs/contributing.md

        Das liegt daran, dass in der Datei `requirements.txt` die lokale Version von FastAPI mit der Option `-e` für die Installation im „editierbaren“ Modus markiert ist.
    
    ### Den Code formatieren
    
    Es gibt ein Skript, das, wenn Sie es ausführen, Ihren gesamten Code formatiert und bereinigt:
    
    <div class="termy">
    
    ```console
    $ bash scripts/format.sh
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top