Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 519 for current1_ (0.13 sec)

  1. src/runtime/preempt.go

    // subsequent successful suspend operations. The current
    // implementation grants exclusive access to the goroutine, and hence
    // multiple callers will serialize. However, the intent is to grant
    // shared read access, so please don't depend on exclusive access.
    //
    // This must be called from the system stack and the user goroutine on
    // the current M (if any) must be in a preemptible state. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

        /**
         * Adds a map entry to the property value.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
         * </p>
         *
         * @param key the key
         * @param value the value
         */
        @Incubating
        void insert(K key, V value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

     *
     * <p>Like {@link ComponentGraphResolveMetadata}, methods on this interface should be thread safe and fast -- meaning
     * they do not run user code or execute network requests. This is not currently the case. Instead, that logic should
     * be migrated to {@link ExternalComponentGraphResolveState}</p>
     */
    public interface ExternalComponentGraphResolveMetadata extends ComponentGraphResolveMetadata {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/pprof/protomem_test.go

    type opCall struct {
    }
    
    var sink []byte
    
    func storeAlloc() {
    	sink = make([]byte, 16)
    }
    
    func nonRecursiveGenericAllocFunction[CurrentOp any, OtherOp any](alloc bool) {
    	if alloc {
    		storeAlloc()
    	} else {
    		nonRecursiveGenericAllocFunction[OtherOp, CurrentOp](true)
    	}
    }
    
    func TestGenericsInlineLocations(t *testing.T) {
    	if testenv.OptimizationOff() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

     * Expensive operations should live on {@link ComponentGraphResolveState} instead. Note that as a transition step, not all implementations currently honor this contract.</p>
     */
    public interface ComponentGraphResolveMetadata {
        /**
         * Returns the identifier for this component.
         */
        ComponentIdentifier getId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. pkg/kubelet/config/sources.go

    type SourcesReady interface {
    	// AddSource adds the specified source to the set of sources managed.
    	AddSource(source string)
    	// AllReady returns true if the currently configured sources have all been seen.
    	AllReady() bool
    }
    
    // NewSourcesReady returns a SourcesReady with the specified function.
    func NewSourcesReady(sourcesReadyFn SourcesReadyFn) SourcesReady {
    	return &sourcesImpl{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

            String trimmed = constraint.trim();
            if (trimmed.equals("current")) {
                return new Spec<GradleVersion>() {
                    @Override
                    public boolean isSatisfiedBy(GradleVersion element) {
                        return element.equals(GradleVersion.current());
                    }
                };
            }
            if (trimmed.equals("!current")) {
                return new Spec<GradleVersion>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/controller/controller.go

    }
    
    func (c *Controller) updateValidatingWebhookConfiguration(current *kubeApiAdmission.ValidatingWebhookConfiguration, caBundle []byte) error {
    	caChangeNeeded := caBundleUpdateRequired(current, caBundle)
    	failurePolicyMaybeNeedsUpdate := failurePolicyIsIgnore(current)
    	scope := scope.WithLabels(
    		"name", current.Name,
    		"resource version", current.ResourceVersion,
    	)
    	if !caChangeNeeded && !failurePolicyMaybeNeedsUpdate {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. configure.py

      if curr_version.startswith('bazel '):
        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

     */
    public abstract class KotlinPackageProvider : KotlinComposableProvider {
        /**
         * Checks if a package with given [FqName] exists in current [GlobalSearchScope] with a view from a given [platform].
         *
         * This includes Kotlin packages as well as platform-specific (i.e., JVM packages) that match the [platform].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top