Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,590 for scores (0.35 sec)

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

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    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
    - 2.2K bytes
    - Viewed (0)
  2. src/sync/atomic/type.go

    type Bool struct {
    	_ noCopy
    	v uint32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
    
    // Store atomically stores val into x.
    func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
    
    // Swap atomically stores new into x and returns the previous value.
    func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/test/framework/suite.go

    		return err
    	}
    
    	scopes.Framework.Infof("=== Test Framework Settings ===")
    	scopes.Framework.Info(settings.String())
    	scopes.Framework.Infof("===============================")
    
    	// Ensure that the work dir is set.
    	if err := os.MkdirAll(settings.RunDir(), os.ModePerm); err != nil {
    		return fmt.Errorf("error creating rundir %q: %v", settings.RunDir(), err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginRequestApplicator.java

    import org.gradle.api.internal.plugins.PluginManagerInternal;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.service.scopes.StatefulListener;
    import org.gradle.plugin.management.internal.PluginRequestInternal;
    import org.gradle.plugin.management.internal.PluginRequests;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactoryTest.groovy

            def store2 = stores1.nextBinaryStore() // rolled
            def store3 = f.createStoreSet().nextBinaryStore()
    
            then:
            store.file != store2.file //rolled
            [store.file, store2.file, store3.file].each { it.exists() }
    
            when:
            new CompositeStoppable().add(store, store2, store3)
    
            then:
            [store.file, store2.file, store3.file].each { !it.exists() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDefaultStarImportingScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/layout/GlobalCacheDir.java

    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    import static org.gradle.cache.internal.scopes.DefaultCacheScopeMapping.GLOBAL_CACHE_DIR_NAME;
    
    @ServiceScope(Scope.UserHome.class)
    public class GlobalCacheDir {
        private final File globalCacheDir;
    
    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. src/internal/types/errors/codes.go

    //go:generate go run golang.org/x/tools/cmd/stringer@latest -type Code codes.go
    
    type Code int
    
    // This file defines the error codes that can be produced during type-checking.
    // Collectively, these codes provide an identifier that may be used to
    // implement special handling for certain types of errors.
    //
    // Error code values should not be changed: add new codes at the end.
    //
    // Error codes should be fine-grained enough that the exact nature of the error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleControllerFactory.java

    import org.gradle.internal.service.scopes.BuildScopeServices;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * <p>Responsible for creating a {@link BuildLifecycleController} instance for a build.
     *
     * Caller must call {@link BuildLifecycleController#stop()} when finished with the launcher.
     */
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDelegatingTypeScope.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder
    import org.jetbrains.kotlin.analysis.api.fir.utils.cached
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    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
    - 2.7K bytes
    - Viewed (0)
Back to top