Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for Innermost (0.28 sec)

  1. src/go/types/assignments.go

    	// spec: "The scope of a constant or variable identifier declared inside
    	// a function begins at the end of the ConstSpec or VarSpec (ShortVarDecl
    	// for short variable declarations) and ends at the end of the innermost
    	// containing block."
    	scopePos := endPos(rhs[len(rhs)-1])
    	for _, obj := range newVars {
    		check.declare(scope, nil, obj, scopePos) // id = nil: recordDef already called
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    			f = nil
    
    			// When CallersFrame is invoked using the PC list returned by Callers,
    			// the PC list includes virtual PCs corresponding to each outer frame
    			// around an innermost real inlined PC.
    			// We also want to support code passing in a PC list extracted from a
    			// stack trace, and there only the real PCs are printed, not the virtual ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	stack       stack   // offset known to runtime/cgo
    	stackguard0 uintptr // offset known to liblink
    	stackguard1 uintptr // offset known to liblink
    
    	_panic    *_panic // innermost panic - offset known to liblink
    	_defer    *_defer // innermost defer
    	m         *m      // current m; offset known to arm liblink
    	sched     gobuf
    	syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    diagonals of a matrix, with everything else padded with `padding`. `num_rows`
    and `num_cols` specify the dimension of the innermost matrix of the output. If
    both are not specified, the op assumes the innermost matrix is square and infers
    its size from `k` and the innermost dimension of `diagonal`. If only one of them
    is specified, the op assumes the unspecified value is the smallest possible
    based on other criteria.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/context/context.go

    var cancelCtxKey int
    
    // parentCancelCtx returns the underlying *cancelCtx for parent.
    // It does this by looking up parent.Value(&cancelCtxKey) to find
    // the innermost enclosing *cancelCtx and then checking whether
    // parent.Done() matches that *cancelCtx. (If not, the *cancelCtx
    // has been wrapped in a custom implementation providing a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. src/encoding/xml/read.go

    //     the prefix of a tag formatted as "a" or "a>b>c", unmarshal
    //     will descend into the XML structure looking for elements with the
    //     given names, and will map the innermost elements to that struct
    //     field. A tag starting with ">" is equivalent to one starting
    //     with the field name followed by ">".
    //
    //   - If the XML element contains a sub-element whose name matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
      // Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString
      // call to fail
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
      // Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString
      // call to fail
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        // two cases:
        // - for Transpose, the data layout is changed so the `dim[axis]` still
        // equals to the `scales_size`. The broadcast skips;
        // - for Reshape, the data layout isn't changed but the innermost dimension
        // is expand to cover the last two original dimensions. Thus we just need to
        // be repeated the `scales` dim[2] times to covers the new dim length.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    func isShrinkStackSafe(gp *g) bool {
    	// We can't copy the stack if we're in a syscall.
    	// The syscall might have pointers into the stack and
    	// often we don't have precise pointer maps for the innermost
    	// frames.
    	if gp.syscallsp != 0 {
    		return false
    	}
    	// We also can't copy the stack if we're at an asynchronous
    	// safe-point because we don't have precise pointer maps for
    	// all frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top