Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for hierarchyOf (0.18 sec)

  1. guava/src/com/google/common/eventbus/SubscriberRegistry.java

                identifiers.put(ident, method);
              }
            }
          }
        }
        return ImmutableList.copyOf(identifiers.values());
      }
    
      /** Global cache of classes to their flattened hierarchy of supertypes. */
      private static final LoadingCache<Class<?>, ImmutableSet<Class<?>>> flattenHierarchyCache =
          CacheBuilder.newBuilder()
              .weakKeys()
              .build(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            then:
            eclipseModel.projectNatures.collect { it.id } == ['nature.a', 'nature.b']
        }
    
        def "nature list independent from project hierarchy"() {
            setup:
            project.eclipse.project.natures = ['nature.for.root']
            child1.eclipse.project.natures = ['nature.for.child1']
            child2.eclipse.project.natures = ['nature.for.child2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         *
         * A path is contained in the set if it or one of its ancestors has
         * been added to the set.
         */
        public abstract boolean contains(String path);
    
        /**
         * Whether this hierarchy is empty, i.e. contains no directories.
         */
        public abstract boolean isEmpty();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        /**
         * Finds the parent symbol of the given [KaSymbol] by traversing back up the symbol hierarchy a certain number of steps,
         * or until the containing class or object symbol is found.
         *
         * @param symbol The [KaSymbol] whose parent symbol needs to be found.
         * @param goBackSteps The number of steps to go back up the symbol hierarchy.
         * @param selectedFqName The fully qualified name of the selected package.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/cluster/cluster.go

    	}
    
    	return out, nil
    }
    
    // Resources defines a tree of cluster resource names.
    type Resources struct {
    	// Root is the first level in the cluster resource hierarchy.
    	// Each level in the hierarchy is a map[string]interface{} to the next level.
    	// The levels are: namespaces/deployments/pods/containers.
    	Root map[string]any
    	// Labels maps a pod name to a map of labels key-values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            this.getEventRegister().registerLazyAddAction(x -> rootComponentMetadataBuilder.getValidator().validateMutation(MutationValidator.MutationType.HIERARCHY));
            this.whenObjectRemoved(x -> rootComponentMetadataBuilder.getValidator().validateMutation(MutationValidator.MutationType.HIERARCHY));
        }
    
        @Override
        @SuppressWarnings("deprecation")
        protected Configuration doCreate(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/pod_container_manager_linux.go

    	podContainerName, _ := m.GetPodContainerName(pod)
    	return m.cgroupManager.Exists(podContainerName)
    }
    
    // EnsureExists takes a pod as argument and makes sure that
    // pod cgroup exists if qos cgroup hierarchy flag is enabled.
    // If the pod level container doesn't already exist it is created.
    func (m *podContainerManagerImpl) EnsureExists(pod *v1.Pod) error {
    	// check if container already exist
    	alreadyExists := m.Exists(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    		// Register current phase as part of its own parent hierarchy
    		parent := p.parent
    		for parent != nil {
    			phaseHierarchy[parent.generatedName] = append(phaseHierarchy[parent.generatedName], p.generatedName)
    			parent = parent.parent
    		}
    		return nil
    	})
    
    	// If a filter option is specified, set all phaseRunFlags to false except for
    	// the phases included in the filter and their hierarchy of nested phases.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

                // A normal gradle build does this by adding the MixInLegacyTypesClassLoader to the class loader hierarchy.
                // In a test run, which is essentially a plain Java application, the classpath is flattened and injected
                // into the system class loader and there exists no Gradle class loader hierarchy in the running test. (See Implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            json.replace('"formatVersion": "1.1"', '"formatVersion": "' + metadataVersion + '"')
        }
    
        def "new hierarchy in ModuleDependency is added to equals and hashcode"() {
            when:
            // If this test fails, you added a type hierarchy to GradleModuleMetadataParser.ModuleDependency, update this test _after_ making sure it is considered by hashcode and equals
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
Back to top