Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 292 for hierarchyOf (0.19 sec)

  1. tensorflow/cc/experimental/libtf/module.h

    //      concrete function(s).
    //   5) For each function with captures, bind the appropriate objects as
    //      captured inputs.
    //   6) Take the fully-prepared objects, and build them into a hierarchy.
    //   7) Return the prepared model.
    
    // Converts a SavedUserObject into its corresponding data structure.
    // TODO(b/185579152): This method returns empty data structures currently.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        public DefaultSerializerRegistry() {
            this(true);
        }
    
        public DefaultSerializerRegistry(boolean supportClassHierarchy) {
            this.classMatcher = supportClassHierarchy ? SerializerClassMatcherStrategy.HIERARCHY : SerializerClassMatcherStrategy.STRICT;
        }
    
        @Override
        public <T> void register(Class<T> implementationType, final Serializer<T> serializer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginCollection.java

    import org.gradle.api.plugins.PluginCollection;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    
    import java.util.Collection;
    
    @SuppressWarnings("deprecation") // Something is weird with the hierarchy of 'add(T)', the implementation inherited from DefaultDomainObjectSet is used internally in DefaultPluginContainer.pluginAdded() but at the same time PluginCollection.add(T) is deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    
    /**
     * A collection of files in Xcode's virtual filesystem hierarchy.
     */
    public class PBXGroup extends PBXReference {
        private final List<PBXReference> children;
        private final LoadingCache<String, PBXGroup> childGroupsByName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiGradleProjectCrossVersionSpec.groovy

            taskA.project == project
    
            project.tasks.find { it.name == 'b' && it.path == ':b' }
            project.tasks.find { it.name == 'c' && it.path == ':c' }
        }
    
        def "provides hierarchy"() {
            file('settings.gradle') << "include 'a', 'a:b', 'a:c', 'a:c:d'"
            file('build.gradle') << '''
    task rootTask
    project (':a') { description = 'A rocks!' }
    '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/ClassLoaderCache.java

        /**
         * Adds or replaces a classloader. This should be called to register specialized classloaders that belong to the hierarchy, so they can be cleaned up as required.
         *
         * @param id the ID of the classloader.
         * @return the classloader.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 02 22:15:54 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationOverridesProvider.kt

            withValidityAssertion { analysisSession.symbolDeclarationOverridesProvider.getDirectlyOverriddenSymbols(this) }
    
        /**
         * Checks if [this] class has [superClass] as its superclass somewhere in the inheritance hierarchy.
         *
         * N.B. The class is not considered to be a subclass of itself, so `myClass.isSubClassOf(myClass)` is always `false`.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

    import javax.annotation.Nullable;
    import java.util.HashSet;
    import java.util.Map;
    
    /**
     * Fingerprint file system snapshots normalizing the path to the relative path in a hierarchy.
     *
     * File names for root directories are ignored. For root files, the file name is used as normalized path.
     */
    public class RelativePathFingerprintingStrategy extends AbstractDirectorySensitiveFingerprintingStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocModularizedJavaIntegrationTest.groovy

        def "can build javadoc from modularized java with -module-source-path specified"() {
    
            testBuildFile << """
                // Module source path needs a folder structure where the module name appears in the hierarchy
                tasks.withType(Javadoc) {
                    options.addStringOption('-module-source-path', "\$projectDir/../*/src/main/java")
                }
    """
    
            when:
            succeeds("javadoc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/ClassInspector.java

            Set<Class<?>> seen = new HashSet<Class<?>>();
            Deque<Class<?>> queue = new ArrayDeque<Class<?>>();
    
            // fully visit the class hierarchy before any interfaces in order to meet the contract
            // of PropertyDetails.getGetters() etc.
            queue.add(type);
            superClasses(type, queue);
            while (!queue.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top