Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,590 for scores (0.12 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirPackageScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    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
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/installer.go

    	if err := os.Mkdir(manifestsDir, 0o700); err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping install manifests: %v", err)
    	}
    	for clusterName, manifests := range i.manifests {
    		clusterDir := path.Join(manifestsDir, clusterName)
    		if err := os.Mkdir(manifestsDir, 0o700); err != nil {
    			scopes.Framework.Errorf("Unable to create directory for dumping %s install manifests: %v", clusterName, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

            def scope = scopes[scopeName]
            if (!scope) {
                scope = new MavenScope(name: scopeName)
                scopes[scopeName] = scope
            }
            scope
        }
    
        void scope(String scopeName, @DelegatesTo(value=MavenScope, strategy=Closure.DELEGATE_FIRST) Closure<?> spec) {
            def scope = scopes[scopeName]
            if (scope) {
                spec.delegate = scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDelegatedMemberScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildScopedCacheBuilderFactory.java

     * limitations under the License.
     */
    
    package org.gradle.cache.scopes;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the build.
     */
    @ServiceScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_extender.go

    	return "Node2Prioritizer"
    }
    
    // Score return score 100 if the given nodeName is "node2"; otherwise return score 10.
    func (pl *node2PrioritizerPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeName string) (int64, *framework.Status) {
    	score := 10
    	if nodeName == "node2" {
    		score = 100
    	}
    	return int64(score), nil
    }
    
    // ScoreExtensions returns nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathTransformerCacheFactory.java

    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.file.FileAccessTracker;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.UserHome.class)
    public interface ClasspathTransformerCacheFactory {
    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/internal/build/BuildModelControllerServices.java

    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.scopes.BuildScopeServices;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Contributes build scoped services.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildModelControllerServices {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 13:37:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10PackageScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaPackageSymbol
    import org.jetbrains.kotlin.resolve.scopes.MemberScope
    
    internal class KaFe10PackageScope(
        scope: MemberScope,
        private val owner: KaPackageSymbol,
        analysisContext: Fe10AnalysisContext
    ) : KaFe10ScopeMember(scope, constructors = emptyList(), analysisContext) {
        override fun getPackageSymbols(nameFilter: KaScopeNameFilter): Sequence<KaPackageSymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildTreeScopedCacheBuilderFactory.java

     */
    
    package org.gradle.cache.scopes;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build tree scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the root build
     * in the build tree.
     */
    @ServiceScope(Scope.BuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top