Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for frame_0 (0.23 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        enter_builder.Input(node, 0);
        Node* enter_node = options.FinalizeBuilder(&enter_builder);
        // Adopt the new Enter node as the value in the current frame.
        node = enter_node;
        // Recurse to the parent frame to see if more Enter nodes need to be added.
        src_node = control_flow_info[src_node->id()].parent_frame;
      }
      return node;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    			if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
    				found = true
    				break
    			}
    		}
    		if found {
    			locals, _, _ := u.frame.getStackMap(false)
    			if locals.n == 0 {
    				return
    			}
    			size := uintptr(locals.n) * goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    				// TODO(bryanpkc): This is imprecise. In general, the instruction
    				// that stores the return address to the stack frame is not the
    				// same one that allocates the frame.
    				if pcsp.Value > 0 {
    					// The return address is preserved at (CFA-frame_size)
    					// after a stack frame has been allocated.
    					deltaBuf = append(deltaBuf, dwarf.DW_CFA_offset_extended_sf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            writeTimeout = checkDuration("duration", duration)
          }
    
        /**
         * Sets the interval between HTTP/2 and web socket pings initiated by this client. Use this to
         * automatically send ping frames until either the connection fails or it is closed. This keeps
         * the connection alive and may detect connectivity failures.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    						Strict: true,
    					}),
    					StreamSerializer: &runtime.StreamSerializerInfo{
    						EncodesAsText: true,
    						Serializer:    json.NewSerializer(json.DefaultMetaFactory, creator, typer, false),
    						Framer:        json.Framer,
    					},
    				},
    				{
    					MediaType:        "application/yaml",
    					MediaTypeType:    "application",
    					MediaTypeSubType: "yaml",
    					EncodesAsText:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	}
    	if stacksize < 0 {
    		ctxt.Diag("negative frame size %d - did you mean NOFRAME?", stacksize)
    	}
    	if text.From.Sym.NoFrame() {
    		if stacksize != 0 {
    			ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", stacksize)
    		}
    	}
    
    	if !containsCall(cursym) {
    		text.From.Sym.Set(obj.AttrLeaf, true)
    		if stacksize == 0 {
    			// A leaf function with no locals has no frame.
    			text.From.Sym.Set(obj.AttrNoFrame, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    // and the span map for all pages in the arena. heapArena objects are
    // themselves allocated off-heap.
    //
    // Since arenas are aligned, the address space can be viewed as a
    // series of arena frames. The arena map (mheap_.arenas) maps from
    // arena frame number to *heapArena, or nil for parts of the address
    // space not backed by the Go heap. The arena map is structured as a
    // two-level array consisting of a "L1" arena map and many "L2" arena
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The summary has up to `max_outputs` summary values containing audio. The
    audio is built from `tensor` which must be 3-D with shape `[batch_size,
    frames, channels]` or 2-D with shape `[batch_size, frames]`. The values are
    assumed to be in the range of `[-1.0, 1.0]` with a sample rate of `sample_rate`.
    
    The `tag` argument is a scalar `Tensor` of type `string`.  It is used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		}
    	}
    	if strings.Contains(s, "//") || strings.Contains(s, "/*") {
    		fatalf("dynamic symbol %q contains Go comment")
    	}
    }
    
    // Construct a gcc struct matching the gc argument frame.
    // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
    // These assumptions are checked by the gccProlog.
    // Also assumes that gc convention is to word-align the
    // input and output parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top