Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for MARK (0.03 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /** Address differences between Firefox and other browsers. */
    hr {
    	-moz-box-sizing: content-box;
    	box-sizing: content-box;
    	height: 0;
    }
    
    /** Address styling not present in IE 8/9. */
    mark {
    	background: #ff0;
    	color: var(--black-color);
    }
    
    /** Correct font family set oddly in Safari 5 and Chrome. */
    code,
    kbd,
    pre,
    samp {
    	font-family: monospace, serif;
    	font-size: 1em;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    		aliasKey := ConfigKey{
    			Kind:      kind.ServiceEntry,
    			Name:      alias.Hostname.String(),
    			Namespace: alias.Namespace,
    		}
    		// Alias. We should mark all the concrete services as updated as well.
    		if configsUpdated.Contains(aliasKey) {
    			// We only have the hostname, but we need the namespace...
    			for _, svc := range allServices {
    				if svc.Hostname == concrete {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This can lead to confusing circular dependency graphs, as the configuration being resolved is used for two different purposes.
    
    To avoid this problem, plugins should mark all resolvable configurations as `canBeConsumed=false` or use the `resolvable(String)` configuration factory method when creating configurations meant for resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateStaticSym(name string) Sym {
    	// Assign a new unique negative version -- this is to mark the
    	// symbol so that it is not included in the name lookup table.
    	l.anonVersion--
    	return l.newExtSym(name, l.anonVersion)
    }
    
    func (l *Loader) FreeSym(i Sym) {
    	if l.IsExternal(i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top