Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 451 for scope_ (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

    import org.gradle.internal.operations.BuildOperationRunner
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceRegistryFactory
    import org.gradle.model.internal.registry.ModelRegistry
    import org.gradle.util.GradleVersion
    import org.gradle.util.Path
    import org.gradle.util.TestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.internal.service.ServiceRegistryBuilder;
    import org.gradle.internal.service.scopes.BasicGlobalScopeServices;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.launcher.bootstrap.ExecutionListener;
    import org.gradle.launcher.daemon.bootstrap.ForegroundDaemonAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

    import org.gradle.internal.operations.OperationProgressEvent;
    import org.gradle.internal.operations.OperationStartEvent;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.Queue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
        }
    
        /**
         * Returns the [KaSymbol]s called [fqName] found in the member scope and companion object's member scope of the [KtDeclaration]s that
         * contain the [contextElement].
         *
         * If [fqName] has two or more segments, e.g. `Foo.bar`, the member and companion object scope of the containing [KtDeclaration] will be
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.SetProperty;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * A factory for creating various kinds of model objects.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    	var buf bytes.Buffer
    	writeFuncName(&buf, obj, nil)
    	return buf.String()
    }
    
    // Scope returns the scope of the function's body block.
    // The result is nil for imported or instantiated functions and methods
    // (but there is also no mechanism to get to an instantiated function).
    func (obj *Func) Scope() *Scope { return obj.typ.(*Signature).scope }
    
    // Origin returns the canonical Func for its receiver, i.e. the Func object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    	saved := obj.color_
    	obj.color_ = black
    	fdecl := decl.fdecl
    	check.funcType(sig, fdecl.Recv, fdecl.Type)
    	obj.color_ = saved
    
    	// Set the scope's extent to the complete "func (...) { ... }"
    	// so that Scope.Innermost works correctly.
    	sig.scope.pos = fdecl.Pos()
    	sig.scope.end = fdecl.End()
    
    	if fdecl.Type.TypeParams.NumFields() > 0 && fdecl.Body == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            @Override
            public void onReuse() {
                if (scriptClass != null) {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    scope.onReuse();
                    assert scriptClass.getClassLoader() == scope.getLocalClassLoader();
                }
            }
    
            @Override
            public Class<? extends T> loadClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/go/types/object.go

    	var buf bytes.Buffer
    	writeFuncName(&buf, obj, nil)
    	return buf.String()
    }
    
    // Scope returns the scope of the function's body block.
    // The result is nil for imported or instantiated functions and methods
    // (but there is also no mechanism to get to an instantiated function).
    func (obj *Func) Scope() *Scope { return obj.typ.(*Signature).scope }
    
    // Origin returns the canonical Func for its receiver, i.e. the Func object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top