Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for IsRoot (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // equalTags compares language, script and region subtags only.
    func (t Tag) equalTags(a Tag) bool {
    	return t.LangID == a.LangID && t.ScriptID == a.ScriptID && t.RegionID == a.RegionID
    }
    
    // IsRoot returns true if t is equal to language "und".
    func (t Tag) IsRoot() bool {
    	if int(t.pVariant) < len(t.str) {
    		return false
    	}
    	return t.equalTags(Und)
    }
    
    // IsPrivateUse reports whether the Tag consists solely of an IsPrivateUse use
    // tag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        public ComponentState getComponent() {
            return component;
        }
    
        @Override
        public Long getNodeId() {
            return nodeId;
        }
    
        @Override
        public boolean isRoot() {
            return false;
        }
    
        @Override
        public ComponentState getOwner() {
            return component;
        }
    
        @Override
        public List<EdgeState> getIncomingEdges() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private InterimResult build(
                    Map<File, MavenProject> projectIndex,
                    File pomFile,
                    Set<File> aggregatorFiles,
                    boolean isRoot,
                    boolean recursive) {
                MavenProject project = new MavenProject();
                project.setFile(pomFile);
    
                project.setRootDirectory(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					testName = testName[:127]
    				}
    				t.Run(testName, func(t *testing.T) {
    					t.Parallel()
    					s := withRule(*tt.schema, validRule)
    					celValidator := validator(&s, &s, tt.isRoot, model.SchemaDeclType(&s, tt.isRoot), celconfig.PerCallLimit)
    					if celValidator == nil {
    						t.Fatal("expected non nil validator")
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			if !cel.MapIsCorrelatable(schema.XMapType) {
    				subSsv = subSsv.withForbidOldSelfValidations(fldPath)
    			}
    
    			if (isRoot || schema.XEmbeddedResource) && metaFields.Has(property) {
    				// we recurse into the schema that applies to ObjectMeta.
    				subSsv = subSsv.withInsideResourceMeta()
    				if isRoot {
    					subSsv = subSsv.withForbiddenDefaults(fmt.Sprintf("in top-level %s", property))
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    // referencedClassVariables, but must be removed
                    // for each parentscope too
                    for (VariableScope scope = currentScope; scope != null && !scope.isRoot(); scope = scope.getParent()) {
                        if (scope.isRoot()) {
                            break;
                        }
                        if (scope.removeReferencedClassVariable(ve.getName()) == null) {
                            break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/smb/SmbFile.java

                int t = getType();
                if ( t == TYPE_SHARE ) {
                    this.size = fetchAllocationInfo(th).getCapacity();
                }
                else if ( !this.fileLocator.isRoot() && t != TYPE_NAMED_PIPE ) {
                    queryPath(th, this.fileLocator.getUNCPath(), FileInformation.FILE_STANDARD_INFO);
                }
                else {
                    this.size = 0L;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    addEdgeFrom(Vertex); public void removeEdgeFrom(Vertex); public java.util.List getChildren(); public java.util.List getChildLabels(); public java.util.List getParents(); public java.util.List getParentLabels(); public boolean isLeaf(); public boolean isRoot(); public boolean isConnected(); public Object clone() throws CloneNotSupportedExc; public String toString(); } org/codehaus/plexus/util/DirectoryScanner.class package org.codehaus.plexus.util; public synchronized class DirectoryScanner { public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			// simulate the recursive validation calls
    			conversionCount := 0
    			converter := func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error) {
    				conversionCount++
    				return defaultConverter(schema, isRoot)
    			}
    			celContext := RootCELContext(tt.schema)
    			celContext.converter = converter
    			opts := validationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
Back to top