Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 195 for aframe (0.25 sec)

  1. src/image/gif/reader_test.go

    // See golang.org/issue/22237
    func TestDecodeMemoryConsumption(t *testing.T) {
    	const frames = 3000
    	img := image.NewPaletted(image.Rectangle{Max: image.Point{1, 1}}, palette.WebSafe)
    	hugeGIF := &GIF{
    		Image:    make([]*image.Paletted, frames),
    		Delay:    make([]int, frames),
    		Disposal: make([]byte, frames),
    	}
    	for i := 0; i < frames; i++ {
    		hugeGIF.Image[i] = img
    		hugeGIF.Delay[i] = 60
    	}
    	buf := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    .Dynamic dependencies in build scan
    image::dependency-management-dynamic-dependency-build-scan.png[]
    
    By default, Gradle caches dynamic versions of dependencies for 24 hours. Within this time frame, Gradle does not try to resolve newer versions from the declared repositories.
    The <<#sec:controlling-dynamic-version-caching,threshold can be configured>> as needed for example if you want to resolve new versions earlier.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/wasm/ssa.go

          (which appears in local variable 0)
        - at block 0
          - check for Go stack overflow, call morestack if needed
          - subtract frame size from SP
          - note that arguments now start at SP+framesize+8
    
       Normal epilogue:
        - pop frame from Go stack
        - pop return address from Go stack
        - push 0 (type i32) on the Wasm stack
        - return
       Exit immediately epilogue:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	}
    
    	// If *most* samples have the same second-to-the-bottom frame, it
    	// strongly suggests that it is an uninteresting artifact of
    	// measurement -- a stack frame pushed by the signal handler. The
    	// bottom frame is always correct as it is picked up from the signal
    	// structure, not the stack. Check if this is the case and if so,
    	// remove.
    
    	// Remove up to two frames.
    	maxiter := 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util.cc

      // a function body, and therefore, arg nodes and retval nodes are
      // not considered uncompilable.
      if (node_stack_trace != nullptr) {
        for (const auto& frame : *node_stack_trace) {
          stack_trace.emplace_back(
              StackFrameView{frame.name, frame.function_name, frame.stack_trace});
        }
      }
      stack_trace.emplace_back(
          StackFrameView{node.name(), "", node.GetStackTrace()});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    	// Setup a new watchserver
    	watchServer := &handlers.WatchServer{
    		Scope:    &handlers.RequestScope{},
    		Watching: watcher,
    
    		MediaType:       "testcase/json",
    		Framer:          serializer.Framer,
    		Encoder:         newCodec,
    		EmbeddedEncoder: newCodec,
    
    		TimeoutFactory: &fakeTimeoutFactory{timeoutCh, done},
    	}
    
    	s := httptest.NewServer(serveWatch(watcher, watchServer, nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    		PR_CAP_AMBIENT_RAISE = 0x2
    	)
    
    	// vfork requires that the child not touch any of the parent's
    	// active stack frames. Hence, the child does all post-fork
    	// processing in this stack frame and never returns, while the
    	// parent returns immediately from this frame and does all
    	// post-fork processing in the outer frame.
    	//
    	// Declare all variables at top in case any
    	// declarations require heap allocation (e.g., err2).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        assertThat(webSocket.close(1000, null)).isFalse()
      }
    
      /**
       * There's no read timeout when reading the first byte of a new frame. But as soon as we start
       * reading a frame we enable the read timeout. In this test we have the server returning the first
       * byte of a frame but no more frames.
       */
      @Test
      fun readTimeoutAppliesWithinFrames() {
        webServer.dispatcher =
          object : Dispatcher() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    	const fin = true
    	var frame ws.Frame
    	if s.ClientSide() {
    		// We do not need to copy the payload, since we own it.
    		payload := p
    
    		frame = ws.NewFrame(op, fin, payload)
    		frame = ws.MaskFrameInPlace(frame)
    	} else {
    		frame = ws.NewFrame(op, fin, p)
    	}
    
    	return ww.writeFrame(w, frame)
    }
    
    // writeFrame writes frame binary representation into w.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/internal/trace/oldtrace.go

    	// Convert stacks.
    	for id, stk := range pr.Stacks {
    		evt.stacks.insert(stackID(id), stack{pcs: stk})
    	}
    
    	// OPT(dh): if we could share the frame type between this package and
    	// oldtrace we wouldn't have to copy the map.
    	for pc, f := range pr.PCs {
    		evt.pcs[pc] = frame{
    			pc:     pc,
    			funcID: stringID(f.Fn),
    			fileID: stringID(f.File),
    			line:   uint64(f.Line),
    		}
    	}
    	pr.Stacks = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top