Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 292 for hierarchyOf (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         *
         * @return The name. Never returns null.
         */
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree. Always uses '/' as the hierarchy
         * separator, regardless of platform file separator. Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path. Never returns null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

    import org.gradle.platform.base.internal.VariantAspect;
    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.internal.GUtil;
    
    import java.util.Map;
    import java.util.TreeMap;
    
    // TODO - bust up this hierarchy and compose using interfaces instead
    public abstract class AbstractBinaryRenderer<T extends BinarySpec> extends ReportRenderer<BinarySpec, TextReportBuilder> {
        private final ModelSchemaStore schemaStore;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

                case INSTRUMENTATION_MARKER:
                    // We don't need to do anything with the marker file
                    return;
                case TYPE_HIERARCHY_ANALYSIS_DATA:
                    // Type hierarchy analysis should never be an input to this transform
                default:
                    throw new IllegalStateException("Unexpected input type: " + inputType);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. maven-core/src/main/mdo/extension.mdo

        precisely control parts of the extension and dependencies to expose in the API class loader.
        Maven uses Plexus Classworlds to build the class loader hierarchy, therefore some concepts used in this extensions
        stem from Plexus Classworlds originally.
        <p><i>Notice:</i> this documentation is generated from a Modello model but the code executed is not generated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

                "",
                "buildscript { $repositoriesBlock }"
            )
        }
    
        def "sourcePath includes kotlin-stdlib sources resolved against project hierarchy"() {
    
            expect:
            assertSourcePathIncludesKotlinStdlibSourcesGiven(
                "buildscript { $repositoriesBlock }",
                ""
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. 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)
  7. operator/pkg/helmreconciler/common.go

    			name.EgressComponentName,
    		},
    		name.IstioBaseComponentName: {
    			name.PilotComponentName,
    		},
    		name.CNIComponentName: {
    			name.ZtunnelComponentName,
    		},
    	}
    
    	// InstallTree is a top down hierarchy tree of dependencies where children must wait for the parent to complete
    	// before starting installation.
    	InstallTree = make(ComponentTree)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/module.cc

    using tf::libtf::runtime::Runtime;
    
    // TODO(danielellis): Fill in with implementations.
    
    // Builds a vector of runtime representations of `SavedObject`s from a
    // SavedModel. These are returned as a flat list.  The full hierarchy building
    // and initialization should be done in a later pass.
    tensorflow::StatusOr<std::vector<Handle>> BuildObjects(TFPackage& tf_package) {
      std::vector<Handle> objects;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            when:
            loader.load(settings, gradle)
    
            then:
            1 * target.load(settings, gradle)
            0 * target._
        }
    
        def "sets project properties on each project in hierarchy"() {
            given:
            2 * gradleProperties.mergeProperties([:]) >> [prop: 'value']
    
            when:
            loader.load(settings, gradle)
    
            then:
            1 * rootProperties.set('prop', 'value')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top