Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for MARK (0.05 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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // methods need to lock it too.
      mutable internal::Mutex mutex_;
    
      // Opaque implementation object.  This field is never changed once
      // the object is constructed.  We don't mark it as const here, as
      // doing so will cause a warning in the constructor of UnitTest.
      // Mutable state in *impl_ is protected by mutex_.
      internal::UnitTestImpl* impl_;
    
      // We disallow copying UnitTest.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // methods need to lock it too.
      mutable internal::Mutex mutex_;
    
      // Opaque implementation object.  This field is never changed once
      // the object is constructed.  We don't mark it as const here, as
      // doing so will cause a warning in the constructor of UnitTest.
      // Mutable state in *impl_ is protected by mutex_.
      internal::UnitTestImpl* impl_;
    
      // We disallow copying UnitTest.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/pod_workers.go

    		status.working = false
    		klog.V(4).InfoS("Pod cannot start yet", "pod", klog.KObj(update.Options.Pod), "podUID", podUID)
    		return ctx, update, canStart, canEverStart, true
    	}
    
    	// mark the pod as started
    	status.startedAt = p.clock.Now()
    	status.mergeLastUpdate(update.Options)
    
    	// If we are admitting the pod and it is new, record the count of containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. 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)
  7. 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