Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Empties (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            then:
            result.assertTasksExecuted ':b'
    
            when:
            configurationCacheRun 'b'
    
            then:
            result.assertTasksExecuted ':b'
        }
    
        def "finalizedBy implies dependency"() {
            given:
            buildFile << '''
                task a
                task b { finalizedBy a }
            '''
    
            when:
            configurationCacheRun 'b'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

        }
    
        override fun servicesForBuildTree(requirements: BuildActionModelRequirements): BuildTreeModelControllerServices.Supplier {
            val startParameter = requirements.startParameter
    
            // Isolated projects also implies configuration cache
            if (startParameter.isolatedProjects.get() && !startParameter.configurationCache.get()) {
                if (startParameter.configurationCache.isExplicit) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/runtime/mfinal.go

    			return true
    		}
    	}
    	return false
    }
    
    // blockUntilEmptyFinalizerQueue blocks until either the finalizer
    // queue is emptied (and the finalizers have executed) or the timeout
    // is reached. Returns true if the finalizer queue was emptied.
    // This is used by the runtime and sync tests.
    func blockUntilEmptyFinalizerQueue(timeout int64) bool {
    	start := nanotime()
    	for nanotime()-start < timeout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        }
    
        @Override
        public PermissionCollection getPermissions(ProtectionDomain pd) {
          return perms;
        }
    
        @Override
        public boolean implies(ProtectionDomain pd, Permission p) {
          return perms.implies(p);
        }
    
        @Override
        public void refresh() {}
      }
    
      /** Returns a policy containing all the permissions we ever need. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    type QueueingHintFn func(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (QueueingHint, error)
    
    type QueueingHint int
    
    const (
    	// QueueSkip implies that the cluster event has no impact on
    	// scheduling of the pod.
    	QueueSkip QueueingHint = iota
    
    	// Queue implies that the Pod may be schedulable by the event.
    	Queue
    )
    
    func (s QueueingHint) String() string {
    	switch s {
    	case QueueSkip:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                firSymbol: FirBasedSymbol<*>,
                requirement: Boolean,
            ) {
                contract {
                    returns() implies requirement
                }
                require(requirement) {
                    val renderedSymbol = FirRenderer.withResolvePhase().renderElementWithTypeAsString(firSymbol.fir)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/sync/map.go

    			}
    			return *v, true
    		}
    	}
    
    	m.mu.Lock()
    	read = m.loadReadOnly()
    	if e, ok := read.m[key]; ok {
    		if e.unexpungeLocked() {
    			// The entry was previously expunged, which implies that there is a
    			// non-nil dirty map and this entry is not in it.
    			m.dirty[key] = e
    		}
    		if v := e.swapLocked(&value); v != nil {
    			loaded = true
    			previous = *v
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    }
    
    // mergeEntryChannels will merge entries from in and return them sorted on out.
    // To signify no more results are on an input channel, close it.
    // The output channel will be closed when all inputs are emptied.
    // If file names are equal, compareMeta is called to select which one to choose.
    // The entry not chosen will be discarded.
    // If the context is canceled the function will return the error,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    		Description:    "The specified version does not exist.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNotImplemented: {
    		Code:           "NotImplemented",
    		Description:    "A header you provided implies functionality that is not implemented",
    		HTTPStatusCode: http.StatusNotImplemented,
    	},
    	ErrPreconditionFailed: {
    		Code:           "PreconditionFailed",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    		return nil
    	}
    	*d = doc
    	return nil
    }
    
    // key options
    type options struct {
    	ttl int64 // expiry in seconds
    }
    
    type iamWatchEvent struct {
    	isCreated bool // !isCreated implies a delete event.
    	keyPath   string
    }
    
    // iamCache contains in-memory cache of IAM data.
    type iamCache struct {
    	updatedAt time.Time
    
    	// map of policy names to policy definitions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top