Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for bigptr (0.12 sec)

  1. src/runtime/gcinfo_test.go

    )
    
    const (
    	typeScalar  = 0
    	typePointer = 1
    )
    
    // TestGCInfo tests that various objects in heap, data and bss receive correct GC pointer type info.
    func TestGCInfo(t *testing.T) {
    	verifyGCInfo(t, "bss Ptr", &bssPtr, infoPtr)
    	verifyGCInfo(t, "bss ScalarPtr", &bssScalarPtr, infoScalarPtr)
    	verifyGCInfo(t, "bss PtrScalar", &bssPtrScalar, infoPtrScalar)
    	verifyGCInfo(t, "bss BigStruct", &bssBigStruct, infoBigStruct())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:58:08 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    			expected: url.Values{"str": {""}, "namedStr": {"named str"}},
    		},
    		{
    			input: &baz{
    				Ptr:  intp(5),
    				Bptr: boolp(true),
    			},
    			expected: url.Values{"ptr": {"5"}, "bptr": {"true"}},
    		},
    		{
    			input: &baz{
    				Bptr: boolp(true),
    			},
    			expected: url.Values{"ptr": {""}, "bptr": {"true"}},
    		},
    		{
    			input: &baz{
    				Ptr: intp(5),
    			},
    			expected: url.Values{"ptr": {"5"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/dependencies/global-dependencies.md

    ## *경로 작동* 모음에 대한 의존성
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 14 15:05:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. internal/ringbuffer/README.md

    Regular Reads will block until data is available, but not wait for a full buffer. 
    Writes will block until there is space available and writes bigger than the buffer will wait for reads to make space.
    
    `TryRead` and `TryWrite` are still available for non-blocking reads and writes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device_ops.cc

      const Tensor& value = context->input(1);
      // Note: every resource-variable-manipulating op assumes copy-on-write
      // semantics, and creates a copy of the variable's Tensor if its refcount is
      // bigger than 1 when we try to modify it. This means we never need to copy
      // the original tensor for AssignVariableOp; even if there are other live
      // users of it we know none can modify it so this is always safe (even in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ```Python hl_lines="9  14"
    {!../../../docs_src/dependencies/tutorial006.py!}
    ```
    
    ## 🔗 👪 *➡ 🛠️*
    
    ⏪, 🕐❔ 👂 🔃 ❔ 📊 🦏 🈸 ([🦏 🈸 - 💗 📁](../../tutorial/bigger-applications.md){.internal-link target=_blank}), 🎲 ⏮️ 💗 📁, 👆 🔜 💡 ❔ 📣 👁 `dependencies` 🔢 👪 *➡ 🛠️*.
    
    ## 🌐 🔗
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/compress/flate/example_test.go

    // by taking advantage of previously allocated memory.
    func Example_reset() {
    	proverbs := []string{
    		"Don't communicate by sharing memory, share memory by communicating.\n",
    		"Concurrency is not parallelism.\n",
    		"The bigger the interface, the weaker the abstraction.\n",
    		"Documentation is for users.\n",
    	}
    
    	var r strings.Reader
    	var b bytes.Buffer
    	buf := make([]byte, 32<<10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  8. test/noinit.go

    	four, five                = 4, 5
    	x, y                      = 0.1, "hello"
    	nilslice   []byte         = nil
    	nilmap     map[string]int = nil
    	nilfunc    func()         = nil
    	nilchan    chan int       = nil
    	nilptr     *byte          = nil
    )
    
    var a = [3]int{1001, 1002, 1003}
    var s = S{1101, 1102, 1103}
    var c = []int{1201, 1202, 1203}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. test/chanlinear.go

    		if t2 < 3*t1 {
    			if false {
    				fmt.Println(typ, "\t", time.Since(t0))
    			}
    			return
    		}
    		// If n ops run in under a second and the ratio
    		// doesn't work out, make n bigger, trying to reduce
    		// the effect that a constant amount of overhead has
    		// on the computed ratio.
    		if t1 < 1*time.Second {
    			n *= 2
    			continue
    		}
    		// Once the test runs long enough for n ops,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/testing.md

    And your **FastAPI** application might also be composed of several files/modules, etc.
    
    ### **FastAPI** app file
    
    Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md){.internal-link target=_blank}:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    In the file `main.py` you have your **FastAPI** app:
    
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top