Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ScopeID (0.23 sec)

  1. 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)
  2. 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)
  3. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        for (String ipString : ipStrings) {
          for (String scopeId : getMachineScopesAndInterfaces()) {
            String withScopeId = ipString + "%" + scopeId;
            assertTrue(
                "InetAddresses.isInetAddress(" + withScopeId + ") should be true but was false",
                InetAddresses.isInetAddress(withScopeId));
            Inet6Address parsed;
            boolean isNumeric = scopeId.matches("\\d+");
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K 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/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)
  6. 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)
  7. src/cmd/compile/internal/ir/func.go

    type Mark struct {
    	// Pos is the position of the token that marks the scope
    	// change.
    	Pos src.XPos
    
    	// Scope identifies the innermost scope to the right of Pos.
    	Scope ScopeID
    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/test/framework/testcontext.go

    	scopes.Framework.Debugf("Creating new testContext: %q", id)
    
    	if parentScope == nil {
    		parentScope = s.globalScope
    	}
    
    	scopeID := fmt.Sprintf("[%s]", id)
    	ctx := &testContext{
    		id:         id,
    		test:       test,
    		T:          goTest,
    		suite:      s,
    		scope:      newScope(scopeID, parentScope),
    		workDir:    workDir,
    		FileWriter: yml.NewFileWriter(workDir),
    	}
    
    	if test.topLevel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K 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)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.scopeids.id.ScopeId> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ScopeId.java:0)
    Class <org.gradle.internal.scopeids.id.UserScopeId> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (UserScopeId.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top