Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for MARK (0.11 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/mgcpacer.go

    	return n
    }
    
    // addIdleMarkWorker attempts to add a new idle mark worker.
    //
    // If this returns true, the caller must become an idle mark worker unless
    // there's no background mark worker goroutines in the pool. This case is
    // harmless because there are already background mark workers running.
    // If this returns false, the caller must NOT become an idle mark worker.
    //
    // nosplit because it may be called without a P.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/internal/obj/riscv/obj.go

    				p.Mark |= NEED_PCREL_ITYPE_RELOC
    			}
    		case p.From.Type == obj.TYPE_MEM && p.To.Type == obj.TYPE_REG:
    			switch p.From.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC:
    				p.Mark |= NEED_PCREL_ITYPE_RELOC
    			}
    		case p.From.Type == obj.TYPE_REG && p.To.Type == obj.TYPE_MEM:
    			switch p.To.Name {
    			case obj.NAME_EXTERN, obj.NAME_STATIC:
    				p.Mark |= NEED_PCREL_STYPE_RELOC
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. 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)
Back to top