Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for MARK (0.04 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. src/runtime/mgcmark.go

    			work.nBSSRoots = nBSSRoots
    		}
    	}
    
    	// Scan span roots for finalizer specials.
    	//
    	// We depend on addfinalizer to mark objects that get
    	// finalizers after root marking.
    	//
    	// We're going to scan the whole heap (that was available at the time the
    	// mark phase started, i.e. markArenas) for in-use spans which have specials.
    	//
    	// Break up the work into arenas, and further into chunks.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    // MASQUERADE  all  --  0.0.0.0/0            0.0.0.0/0            /* kubernetes service traffic requiring SNAT */ mark match 0x4000/0x4000
    
    // :KUBE-MARK-MASQ - [0:0]
    // Chain KUBE-MARK-MASQ (0 references)
    // target     prot opt source               destination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. fastapi/param_functions.py

                """
            ),
        ] = None,
        deprecated: Annotated[
            Union[deprecated, str, bool, None],
            Doc(
                """
                Mark this parameter field as deprecated.
    
                It will affect the generated OpenAPI (e.g. visible at `/docs`).
                """
            ),
        ] = None,
        include_in_schema: Annotated[
            bool,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/mgcscavenge.go

    				p.searchAddr = b
    			}
    			p.chunkOf(ci).free(base, npages)
    			p.update(addr, uintptr(npages), true, false)
    
    			// Mark the range as scavenged.
    			p.chunkOf(ci).scavenged.setRange(base, npages)
    			unlock(p.mheapLock)
    
    			return uintptr(npages) * pageSize
    		}
    	}
    	// Mark this chunk as having no free pages.
    	p.scav.index.setEmpty(ci)
    	unlock(p.mheapLock)
    
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top