Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Empties (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

            @OptIn(ExperimentalContracts::class)
            private fun isMutabilityFlexibleType(lower: KaType, upper: KaType): Boolean {
                contract {
                    returns(true) implies (lower is KaNonErrorClassType)
                    returns(true) implies (upper is KaNonErrorClassType)
                }
                if (lower !is KaNonErrorClassType || upper !is KaNonErrorClassType) return false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    	}
    }
    
    // Deref returns the type of the variable pointed to by t,
    // if t's core type is a pointer; otherwise it returns t.
    //
    // Do not assume that Deref(T)==T implies T is not a pointer:
    // consider "type T *T", for example.
    //
    // TODO(adonovan): ideally this would live in typesinternal, but that
    // creates an import cycle. Move there when we melt this package down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kube/util.go

    		if err != nil {
    			return nil, err
    		}
    		res = append(res, r)
    	}
    	return res, nil
    }
    
    // SlowConvertToRuntimeObject converts an IstioKind to a runtime.Object.
    // As the name implies, it is not efficient.
    func SlowConvertToRuntimeObject(in *crd.IstioKind) (runtime.Object, error) {
    	by, err := config.ToJSON(in)
    	if err != nil {
    		return nil, err
    	}
    	gvk := in.GetObjectKind().GroupVersionKind()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top