Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for IsRoot (0.14 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    	// po.constants is updated to point to the master node.
    	for val, idx := range po.constants {
    		if i2s.Test(idx) {
    			po.constants[val] = i1
    			po.upushconst(i1, idx)
    		}
    	}
    }
    
    func (po *poset) isroot(r uint32) bool {
    	for i := range po.roots {
    		if po.roots[i] == r {
    			return true
    		}
    	}
    	return false
    }
    
    func (po *poset) changeroot(oldr, newr uint32) {
    	for i := range po.roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    classId = outerClassId
                }
    
                // Handle package names
                var packageFqName = referencedClassId.packageFqName
    
                while (!packageFqName.isRoot) {
                    if (expression === qualifiedAccess.selectorExpression) {
                        return listOfNotNull(symbolBuilder.createPackageSymbolIfOneExists(packageFqName))
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. pilot/pkg/xds/proxy_dependencies_test.go

    func TestProxyNeedsPush(t *testing.T) {
    	const (
    		svcName        = "svc1.com"
    		privateSvcName = "private.com"
    		drName         = "dr1"
    		vsName         = "vs1"
    		scName         = "sc1"
    		nsName         = "ns1"
    		nsRoot         = "rootns"
    		generalName    = "name1"
    
    		invalidNameSuffix = "invalid"
    	)
    
    	type Case struct {
    		name    string
    		proxy   *model.Proxy
    		configs sets.Set[model.ConfigKey]
    		want    bool
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/OrderingTest.java

        List<T> list = Arrays.asList(strictlyOrderedElements);
    
        // for use calling Collection.toArray later
        T[] emptyArray = Platform.newArray(strictlyOrderedElements, 0);
    
        // shoot me, but I didn't want to deal with wildcards through the whole test
        @SuppressWarnings("unchecked")
        Scenario<T> starter = new Scenario<>((Ordering<T>) ordering, list, emptyArray);
        verifyScenario(starter, 0);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    retired from the face of the earth, and it would not be wonderful to meet a Megalosaurus, forty feet long or so, waddling like an elephantine lizard up Holborn Hill. Smoke lowering down from chimney-pots, making a soft black drizzle, with flakes of soot in it as big as full-grown snowflakes—gone into mourning, one might imagine, for the death of the sun. Dogs, undistinguishable in mire. Horses, scarcely better; splashed to their very blinkers. Foot passengers, jostling one another’s umbrellas in a...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top