Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for iframe (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "build ':' state", type: "O", frame: ":sub:ok"])
            events.contains([profile: "build ':' state", type: "C", frame: ":sub:ok"])
    
            and: "task type frame follows task path frame follows LocalTaskNode frame"
            def firstTaskNodeIndex = events.findIndexOf { it.frame == LocalTaskNode.name }
            firstTaskNodeIndex > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    				}
    				r := frame
    				if argRegs > 0 {
    					r = unsafe.Pointer(&regs.Ints)
    				} else {
    					// frame is effectively uninitialized
    					// memory. That means we have to clear
    					// it before writing to it to avoid
    					// confusing the write barrier.
    					*(*[2]uintptr)(frame) = [2]uintptr{}
    				}
    				switch f.fint.Kind_ & abi.KindMask {
    				case abi.Pointer:
    					// direct use of pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter
    
        suspend fun write(value: Any?)
    
        fun writeClass(type: Class<*>)
    }
    
    
    interface Tracer {
    
        fun open(frame: String)
    
        fun close(frame: String)
    }
    
    
    interface ReadContext : IsolateContext, MutableIsolateContext, Decoder {
    
        val sharedIdentities: ReadIdentities
    
        override val isolate: ReadIsolate
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/liveness/plive.go

    		// Locals have a negative Xoffset, in which case the offset is relative to varp.
    		// We already limit the frame size, so the offset and the object size
    		// should not be too big.
    		frameOffset := v.FrameOffset()
    		if frameOffset != int64(int32(frameOffset)) {
    			base.Fatalf("frame offset too big: %v %d", v, frameOffset)
    		}
    		off = objw.Uint32(x, off, uint32(frameOffset))
    
    		t := v.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin.go

    	setupLogging(conf)
    
    	var loggedPrevResult any
    	if conf.PrevResult == nil {
    		loggedPrevResult = "none"
    	} else {
    		loggedPrevResult = conf.PrevResult
    	}
    	log.WithLabels("if", args.IfName).Debugf("istio-cni CmdAdd config: %+v", conf)
    	log.Debugf("istio-cni CmdAdd previous result: %+v", loggedPrevResult)
    
    	// Determine if running under k8s by checking the CNI args
    	k8sArgs := K8sArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/sync/mutex.go

    	}
    
    	// Fast path: drop lock bit.
    	new := atomic.AddInt32(&m.state, -mutexLocked)
    	if new != 0 {
    		// Outlined slow path to allow inlining the fast path.
    		// To hide unlockSlow during tracing we skip one extra frame when tracing GoUnblock.
    		m.unlockSlow(new)
    	}
    }
    
    func (m *Mutex) unlockSlow(new int32) {
    	if (new+mutexLocked)&mutexLocked == 0 {
    		fatal("sync: unlock of unlocked mutex")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	pp := s.pp
    
    	s.maxarg = types.RoundUp(s.maxarg, e.stkalign)
    	frame := s.maxarg + e.stksize
    	if Arch.PadFrame != nil {
    		frame = Arch.PadFrame(frame)
    	}
    
    	// Fill in argument and frame size.
    	pp.Text.To.Type = obj.TYPE_TEXTSIZE
    	pp.Text.To.Val = int32(types.RoundUp(f.OwnAux.ArgWidth(), int64(types.RegSize)))
    	pp.Text.To.Offset = frame
    
    	p := pp.Text
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/server.go

    func relevantCaller() runtime.Frame {
    	pc := make([]uintptr, 16)
    	n := runtime.Callers(1, pc)
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for {
    		frame, more := frames.Next()
    		if !strings.HasPrefix(frame.Function, "net/http.") {
    			return frame
    		}
    		if !more {
    			break
    		}
    	}
    	return frame
    }
    
    func (w *response) WriteHeader(code int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top