Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for MARK (0.09 sec)

  1. src/runtime/mgc.go

    	// happened.
    	//
    	// startSema protects the transition from "off" to mark or
    	// mark termination.
    	startSema uint32
    	// markDoneSema protects transitions from mark to mark termination.
    	markDoneSema uint32
    
    	bgMarkDone uint32 // cas to 1 when at a background mark completion point
    	// Background mark completion signaling
    
    	// mode is the concurrency mode of the current GC cycle.
    	mode gcMode
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	// this so that it is easier to flush and change, for example if the mark
    	// value should ever change.
    
    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-m", "mark", "!", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "RETURN",
    	)
    	// Clear the mark to avoid re-masquerading if the packet re-traverses the network stack.
    	proxier.natRules.Write(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    		// has already run but mark termination hasn't yet.
    		if gcphase != _GCoff {
    			base, span, _ := findObject(uintptr(p), 0, 0)
    			mp := acquirem()
    			gcw := &mp.p.ptr().gcw
    			// Mark everything reachable from the object
    			// so it's retained for the finalizer.
    			if !span.spanclass.noscan() {
    				scanobject(base, gcw)
    			}
    			// Mark the finalizer itself, since the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    		ensureChain(chain, tx, createdChains)
    	}
    
    	// Add the rules in the mark-for-masquerade and masquerading chains
    	tx.Add(&knftables.Rule{
    		Chain: markMasqChain,
    		Rule: knftables.Concat(
    			"mark", "set", "mark", "or", proxier.masqueradeMark,
    		),
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: masqueradingChain,
    		Rule: knftables.Concat(
    			"mark", "and", proxier.masqueradeMark, "==", "0",
    			"return",
    		),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	// naively count them, we would get a skew toward mallocs.
    	//
    	// Hence, we delay information to get consistent snapshots as
    	// of mark termination. Allocations count toward the next mark
    	// termination's snapshot, while sweep frees count toward the
    	// previous mark termination's snapshot:
    	//
    	//              MT          MT          MT          MT
    	//             .·|         .·|         .·|         .·|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	order := make([]*sym.Library, 0, len(libs)) // hold the result
    	mark := make(map[*sym.Library]markKind, len(libs))
    	for _, lib := range libs {
    		dfs(lib, mark, &order)
    	}
    	return order
    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    	if mark[lib] == visiting {
    		panic("found import cycle while visiting " + lib.Pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) - 1))
    }
    
    // markBits provides access to the mark bit for an object in the heap.
    // bytep points to the byte holding the mark bit.
    // mask is a byte with a single bit set that can be &ed with *bytep
    // to see if the bit has been set.
    // *m.byte&m.mask != 0 indicates the mark bit is set.
    // index can be used along with span information to generate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    			}
    		}
    
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	// mark loop entry instructions for padding
    	// loop entrances are defined as targets of backward branches
    	for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		if q := p.To.Target(); q != nil && q.Pc < p.Pc {
    			q.Mark |= branchLoopHead
    		}
    	}
    
    	// Run these passes until convergence.
    	for {
    		rescan := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    					}
    					// cfg.BuildMod does not allow us to change dep.mod to be a direct
    					// dependency, so don't mark it as such.
    					continue
    				}
    			}
    
    			// dep is a package directly imported by a package or test in the main
    			// module and loaded from some other module (not the standard library).
    			// Mark its module as a direct dependency.
    			direct[dep.mod.Path] = true
    		}
    	}
    	if maxTooNew != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: mark the sub-phase of 'init kubelet-finilize' called 'experimental-cert-rotation' as deprecated and print a warning if it is used directly; it will be removed in a future release. Add a replacement sub-phase 'enable-client-cert-rotation'. ([#124419](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top