Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,590 for scores (0.17 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         */
        public fun KaScopeContext.getCompositeScope(filter: (KaScopeKind) -> Boolean = { true }): KaScope = withValidityAssertion {
            val subScopes = scopes.filter { filter(it.kind) }.map { it.scope }
            subScopes.asCompositeScope()
        }
    }
    
    public typealias KtScopeProviderMixIn = KaScopeProviderMixIn
    
    public class KaScopeContext(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtEmptyScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.impl.base.scopes
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.name.Name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/kube.go

    	defer func() {
    		if err != nil && !ctx.Settings().CIMode {
    			scopes.Framework.Infof(`
    There was an error while setting up the Kubernetes test environment.
    Check the test framework wiki for details on running the tests locally:
        https://github.com/istio/istio/wiki/Istio-Test-Framework
    `)
    		}
    	}()
    	scopes.Framework.Infof("Test Framework Kubernetes environment Settings:\n%s", s)
    	e := &Environment{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    			features: map[featuregate.Feature]bool{
    				features.VolumeCapacityPriority: true,
    			},
    			args: config.VolumeBindingArgs{
    				BindTimeoutSeconds: 10,
    				Shape: []config.UtilizationShapePoint{
    					{Utilization: -1, Score: 1},
    					{Utilization: 10, Score: -1},
    					{Utilization: 20, Score: 11},
    					{Utilization: 101, Score: 1},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ProjectComponentObservationListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.StatefulListener;
    import org.gradle.util.Path;
    
    import javax.annotation.Nullable;
    
    /**
     * A listener that is notified when one project observes the local component metadata of another.
     */
    @StatefulListener
    @EventScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/scopes/GlobalScopedCacheBuilderFactory.java

     * limitations under the License.
     */
    
    package org.gradle.cache.scopes;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Factory for creating global {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle/caches directory.
     */
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/IProjectFactory.java

    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceRegistryFactory;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Creates a {@link ProjectInternal} implementation.
     */
    @ServiceScope(Scope.Build.class)
    public interface IProjectFactory {
        ProjectInternal createProject(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleDependencies.java

     */
    public interface ExampleDependencies extends Dependencies {
    // end::custom-dependencies-type[]
    
    // tag::custom-dependencies-scopes[]
        /**
         * Dependency scope called "implementation"
         */
        DependencyCollector getImplementation();
    // end::custom-dependencies-scopes[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 507 bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    func LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)
    
    // StoreInt32 atomically stores val into *addr.
    // Consider using the more ergonomic and less error-prone [Int32.Store] instead.
    func StoreInt32(addr *int32, val int32)
    
    // StoreInt64 atomically stores val into *addr.
    // Consider using the more ergonomic and less error-prone [Int64.Store] instead
    // (particularly if you target 32-bit platforms; see the bugs section).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top