Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ScopeID (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/ScopeId.java

                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
    
            ScopeId scopeId = (ScopeId) o;
    
            return id.equals(scopeId.id);
        }
    
        @Override
        public int hashCode() {
            return id.hashCode();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 12 00:24:17 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  2. pkg/test/framework/suitecontext.go

    	scopeID := fmt.Sprintf("[suite(%s)]", s.TestID)
    
    	workDir := path.Join(s.RunDir(), "_suite_context")
    	if err := os.MkdirAll(workDir, os.ModePerm); err != nil {
    		return nil, err
    	}
    	c := &suiteContext{
    		settings:     s,
    		globalScope:  newScope(scopeID, nil),
    		workDir:      workDir,
    		FileWriter:   yml.NewFileWriter(workDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                scopeSpecs[childId] = child
            }
        }
    
        override fun classloaderCreated(scopeId: ClassLoaderScopeId, classLoaderId: ClassLoaderId, classLoader: ClassLoader, classPath: ClassPath, implementationHash: HashCode?) {
            synchronized(lock) {
                val spec = scopeSpecs[scopeId]
                require(spec != null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistryListener.java

    public interface ClassLoaderScopeRegistryListener {
    
        void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @Nullable ClassLoaderScopeOrigin origin);
    
        void classloaderCreated(ClassLoaderScopeId scopeId, ClassLoaderId classLoaderId, ClassLoader classLoader, ClassPath classPath, @Nullable HashCode implementationHash);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     *
     * This ID is persisted in the root build's project cache dir.
     * If this cache directory is destroyed, a new ID will be issued.
     */
    public final class WorkspaceScopeId extends ScopeId {
    
        public WorkspaceScopeId(UniqueId id) {
            super(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/UserScopeId.java

     *
     * This ID is persisted in the Gradle user home dir.
     * If this directory is destroyed, or a build is run with a different gradle user home,
     * a new ID will be issued.
     */
    public final class UserScopeId extends ScopeId {
    
        public UserScopeId(UniqueId id) {
            super(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

     *
     * This ID is, by definition, not persistent.
     */
    @ServiceScope(Scope.BuildTree.class)
    public final class BuildInvocationScopeId extends ScopeId {
    
        public BuildInvocationScopeId(UniqueId id) {
            super(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                } finally {
                    lock.unlock();
                }
            }
        }
    
        @Override
        public void classloaderCreated(ClassLoaderScopeId scopeId, ClassLoaderId classLoaderId, ClassLoader classLoader, ClassPath classPath, @javax.annotation.Nullable HashCode implementationHash) {
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/kubelet/network/dns/dns_windows.go

    type FixedInfo struct {
    	HostName         [maxHostnameLen + 4]byte
    	DomainName       [maxDomainNameLen + 4]byte
    	CurrentDNSServer *syscall.IpAddrString
    	DNSServerList    syscall.IpAddrString
    	NodeType         uint32
    	ScopeID          [maxScopeIDLen + 4]byte
    	EnableRouting    uint32
    	EnableProxy      uint32
    	EnableDNS        uint32
    }
    
    var (
    	// GetNetworkParams can be found in iphlpapi.dll
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top