Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for scope_ (0.11 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

        public Injector bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope) {
            return bindScope(scopeAnnotation, () -> scope);
        }
    
        public Injector bindScope(Class<? extends Annotation> scopeAnnotation, Supplier<Scope> scope) {
            if (scopes.put(scopeAnnotation, scope) != null) {
                throw new DIException(
                        "Cannot rebind scope annotation class to a different implementation: " + scopeAnnotation);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/log/options.go

    // SetDefaultOutputLevel sets the minimum log output level for a given scope.
    // This can be overwritten by flags
    func (o *Options) SetDefaultOutputLevel(scope string, level Level) {
    	sl := scope + ":" + levelToString[level]
    	levels := strings.Split(o.defaultOutputLevels, ",")
    	if scope == DefaultScopeName {
    		// see if we have an entry without a scope prefix (which represents the default scope)
    		for i, ol := range levels {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    	// Scopes maps syntax.Nodes to the scopes they define. Package scopes are not
    	// associated with a specific node but with all files belonging to a package.
    	// Thus, the package scope can be found in the type-checked Package object.
    	// Scopes nest, with the Universe scope being the outermost scope, enclosing
    	// the package scope, which contains (one or more) files scopes, which enclose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. chainable_api.go

    	scopes := db.Statement.scopes
    	db.Statement.scopes = nil
    	for _, scope := range scopes {
    		db = scope(db)
    	}
    	return db
    }
    
    // Preload preload associations with given conditions
    //
    //	// get all users, and preload all non-cancelled orders
    //	db.Preload("Orders", "state NOT IN (?)", "cancelled").Find(&users)
    func (db *DB) Preload(query string, args ...interface{}) (tx *DB) {
    	tx = db.getInstance()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

    import org.gradle.cache.PersistentCache
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.internal.cc.impl.initialization.ConfigurationCacheStartParameter
    import org.gradle.internal.cc.base.logger
    import org.gradle.internal.extensions.stdlib.useToRun
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

    import org.gradle.internal.problems.failure.Failure
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.Closeable
    import java.io.File
    import java.nio.file.Files
    import java.util.concurrent.Callable
    import java.util.concurrent.TimeUnit
    import kotlin.contracts.contract
    
    
    @ServiceScope(Scope.BuildTree::class)
    class ConfigurationCacheReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/test/framework/test.go

    	context2 "context"
    	"fmt"
    	"testing"
    	"time"
    
    	traceapi "go.opentelemetry.io/otel/trace"
    
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/tracing"
    )
    
    type Test interface {
    	// Label applies the given labels to this test.
    	Label(labels ...label.Instance) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                    }
                    return loadedClass!!
                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
                    require(loadedClass!!.classLoader == it.localClassLoader)
                }
            }
    
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    import org.gradle.internal.problems.failure.FailureFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.problems.buildtree.ProblemReporter
    import org.gradle.problems.buildtree.ProblemReporter.ProblemConsumer
    import java.io.File
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheProblems(
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.internal.serialize.kryo.KryoBackedEncoder
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.util.Path
    import java.io.File
    import java.io.InputStream
    import java.io.OutputStream
    
    
    @ServiceScope(Scope.Build::class)
    class ConfigurationCacheIO internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top