Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for elide (0.85 sec)

  1. src/runtime/arena.go

    // addresses. The reason for this is to take advantage of a GC optimization wherein
    // the GC will stop scanning an object when there are no more pointers in it, which
    // also allows us to elide clearing the heap bitmap for pointer-free Go values
    // allocated into arenas.
    //
    // Note that arenas are not safe to use concurrently.
    //
    // In summary, there are 2 resources: arenas, and arena chunks. They exist in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    	return ret
    }
    
    // string6 formats ip in IPv6 textual representation. It follows the
    // guidelines in section 4 of RFC 5952
    // (https://tools.ietf.org/html/rfc5952#section-4): no unnecessary
    // zeros, use :: to elide the longest run of zeros, and don't use ::
    // to compact a single zero field.
    func (ip Addr) string6() string {
    	// Use a zone with a "plausibly long" name, so that most zone-ful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/runtime/traceback_test.go

    					t.Errorf("traceback ended early")
    					break
    				}
    				fr := tb.frames[0]
    				if i == runtime.TracebackInnerFrames && elided > 0 {
    					// This should be an "elided" frame.
    					if fr.elided != elided {
    						t.Errorf("want %d frames elided", elided)
    						break
    					}
    					i += fr.elided
    				} else {
    					want := fmt.Sprintf("runtime_test.tte%d", (i+1)%5)
    					if i == 0 {
    						want = "runtime/debug.Stack"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.proto

      // Name represents the name for the workload.
      // For Kubernetes, this is the pod name.
      // This is just for debugging and may be elided as an optimization.
      string name = 1;
      // Namespace represents the namespace for the workload.
      // This is just for debugging and may be elided as an optimization.
      string namespace = 2;
    
      // Address represents the IPv4/IPv6 address for the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/encoding/json/stream.go

    		n := scanp - dec.scanp
    		err = dec.refill()
    		scanp = dec.scanp + n
    	}
    	return scanp - dec.scanp, nil
    }
    
    func (dec *Decoder) refill() error {
    	// Make room to read more into the buffer.
    	// First slide down data already consumed.
    	if dec.scanp > 0 {
    		dec.scanned += int64(dec.scanp)
    		n := copy(dec.buf, dec.buf[dec.scanp:])
    		dec.buf = dec.buf[:n]
    		dec.scanp = 0
    	}
    
    	// Grow buffer if not large enough.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. docs/tr/docs/async.md

    Ve bu **FastAPI** ile elde ettiğiniz performans düzeyiyle aynıdır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. docs/tr/docs/index.md

    * **Kısa**: Kod tekrarı minimize edildi. Her parametre tanımlamasında birden fazla özellik ve daha az hatayla karşılaşacaksınız.
    * **Güçlü**: Otomatik ve etkileşimli dokümantasyon ile birlikte, kullanıma hazır kod elde edebilirsiniz.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/path-params.md

    ## Özet
    
    **FastAPI** ile kısa, sezgisel ve standart Python tip tanımlamaları kullanarak şunları elde edersiniz:
    
    * Editör desteği: hata denetimi, otomatik tamamlama, vb.
    * Veri "<abbr title="HTTP isteği ile birlikte gelen string'i Python verisine dönüştürme">dönüştürme</abbr>"
    * Veri doğrulama
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope.h

      /// `name/child_scope_name` as the prefix. The actual name will be unique
      /// in the current scope. All other properties are inherited from the current
      /// scope. If `child_scope_name` is empty, the `/` is elided.
      Scope NewSubScope(const string& child_scope_name) const;
    
      /// Return a new scope. All ops created within the returned scope will have
      /// names of the form `name/StrCat(fragments...)[_suffix]`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/doc/doc_test.go

    		[]string{p, `ExportedType.ExportedField`},
    		[]string{
    			`type ExportedType struct`,
    			`ExportedField int`,
    			`Comment before exported field`,
    			`Comment on line with exported field`,
    			`other fields elided`,
    		},
    		nil,
    	},
    
    	// Field with -u.
    	{
    		"method with -u",
    		[]string{"-u", p, `ExportedType.unexportedField`},
    		[]string{
    			`unexportedField int`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top