Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 723 for oper (1.53 sec)

  1. src/archive/tar/reader_test.go

    			{6, "\x00G\x00o\x00G"},
    			{8, "\x00G\x00o\x00G\x00o"},
    			{4, "end\n"},
    		},
    	}}
    
    	for _, v := range vectors {
    		t.Run(path.Base(v.file), func(t *testing.T) {
    			f, err := os.Open(v.file)
    			if err != nil {
    				t.Fatalf("Open() error: %v", err)
    			}
    			defer f.Close()
    
    			tr := NewReader(f)
    			for i, tc := range v.cases {
    				hdr, err := tr.Next()
    				if err != nil || hdr == nil {
    Registered: Tue Oct 29 11:13:09 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. RELEASE.md

        * `Dequantize` op supports `TensorType_INT4`.
            * This change includes per-channel dequantization.
        * Add support for `stablehlo.composite`.
        * `EmbeddingLookup` op supports per-channel quantization and `TensorType_INT4` values.
        * `FullyConnected` op supports `TensorType_INT16` activation and `TensorType_Int4` weight per-channel quantization.
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/custom-response.md

    โœŠ ๐Ÿ” ๐Ÿš‚ โš–๏ธ ๐Ÿ˜ ๐Ÿš‚/๐ŸŽป & ๐ŸŽ ๐Ÿ“จ ๐Ÿ’ช.
    
    ```Python hl_lines="2  14"
    {!../../docs_src/custom_response/tutorial007.py!}
    ```
    
    #### โš™๏ธ `StreamingResponse` โฎ๏ธ ๐Ÿ“-๐Ÿ’– ๐ŸŽš
    
    ๐Ÿšฅ ๐Ÿ‘† โœ”๏ธ ๐Ÿ“-๐Ÿ’– ๐ŸŽš (โœ… ๐ŸŽš ๐Ÿ“จ `open()`), ๐Ÿ‘† ๐Ÿ’ช โœ ๐Ÿš‚ ๐Ÿ”ข ๐Ÿ” ๐Ÿคญ ๐Ÿ‘ˆ ๐Ÿ“-๐Ÿ’– ๐ŸŽš.
    
    ๐Ÿ‘ˆ ๐ŸŒŒ, ๐Ÿ‘† ๐Ÿšซ โœ”๏ธ โœ โšซ๏ธ ๐ŸŒ ๐Ÿฅ‡ ๐Ÿ’พ, & ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ‘ˆ ๐Ÿš‚ ๐Ÿ”ข `StreamingResponse`, & ๐Ÿ“จ โšซ๏ธ.
    
    ๐Ÿ‘‰ ๐Ÿ”Œ ๐Ÿ“š ๐Ÿ—ƒ ๐Ÿ”— โฎ๏ธ โ˜ ๐Ÿ’พ, ๐Ÿ“น ๐Ÿญ, & ๐ŸŽ.
    
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JavassistExtensions.kt

            return value!!
        }
    
    
    private
    fun <T> annotationMemberValueNotFound(type: TypeOf<T>) =
        IllegalStateException("Annotation member value '${type.simpleName}' not found")
    
    
    private
    open class MemberValueVisitorAdapter : MemberValueVisitor {
        override fun visitStringMemberValue(node: StringMemberValue) = Unit
        override fun visitBooleanMemberValue(node: BooleanMemberValue) = Unit
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  5. .github/bot_config.yml

             * It has an added advantage since you can you easily switch to different hardware accelerators (cpu, gpu, tpu) as per the task.
             * All you need is a good internet connection and you are all set.
          * Try to build TF from sources by changing CPU optimization flags.
       
       *Please let us know if this helps.*
       
    windows_comment: >
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Mon Jul 15 05:00:54 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            buf.append("\"process\":{");
            final ProcessProbe processProbe = ProcessProbe.getInstance();
            buf.append("\"file_descriptor\":{");
            append(buf, "open", () -> processProbe.getOpenFileDescriptorCount()).append(',');
            append(buf, "max", () -> processProbe.getMaxFileDescriptorCount());
            buf.append("},");
            buf.append("\"cpu\":{");
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. internal/grid/benchmark_test.go

    	}
    	const payloadSize = 512
    	rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    	payload := make([]byte, payloadSize)
    	_, err = rng.Read(payload)
    	errFatal(err)
    
    	// Wait for all to connect
    	// Parallel writes per server.
    	b.Run("bytes", func(b *testing.B) {
    		for par := 1; par <= 32; par *= 2 {
    			b.Run("par="+strconv.Itoa(par*runtime.GOMAXPROCS(0)), func(b *testing.B) {
    				defer timeout(60 * time.Second)()
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/extending-openapi.md

    Eine `FastAPI`-Anwendung (-Instanz) verfรผgt รผber eine `.openapi()`-Methode, von der erwartet wird, dass sie das OpenAPI-Schema zurรผckgibt.
    
    Als Teil der Erstellung des Anwendungsobjekts wird eine *Pfadoperation* fรผr `/openapi.json` (oder welcher Wert fรผr den Parameter `openapi_url` gesetzt wurde) registriert.
    
    Diese gibt lediglich eine JSON-Response zurรผck, mit dem Ergebnis der Methode `.openapi()` der Anwendung.
    
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/request-forms.md

    /// info
    
    `Form` ist eine Klasse, die direkt von `Body` erbt.
    
    ///
    
    /// tip | "Tipp"
    
    Um Formularbodys zu deklarieren, verwenden Sie explizit `Form`, da diese Parameter sonst als Query-Parameter oder Body(-JSON)-Parameter interpretiert werden wรผrden.
    
    ///
    
    ## รœber โ€žFormularfelderโ€œ
    
    HTML-Formulare (`<form></form>`) senden die Daten in einer โ€žspeziellenโ€œ Kodierung zum Server, welche sich von JSON unterscheidet.
    
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. docs/throttle/README.md

    drives, some applications with high concurrency might require MinIO cluster to be tuned such that to avoid random I/O on the drives. The way to convert high concurrent I/O into a sequential I/O is by reducing the number of concurrent operations allowed per cluster. This allows MinIO cluster to be operationally resilient to such workloads, while also making sure the drives are at optimal efficiency and responsive.
    
    Example: Limit a MinIO cluster to accept at max 1600 simultaneous S3 API requests...
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Aug 16 08:43:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top