Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,007 for nature (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def natures = rootProject.projectNatures.collect{ it.id }
    
            then:
            if (plugins.contains('ear') && targetVersion < GradleVersion.version("8.0") ) {
                assert natures == WTP_NATURES
            } else {
                assert natures == JAVA_NATURES + WTP_NATURES
            }
    
            where:
            plugins << [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

        }
      }
      return same_cluster_ops_with_dependency;
    }
    
    // An op can be merged into cluster if it satisfies both of the following
    // conditions:
    //
    //  * Merging the op into the cluster doesn't break the acyclic nature of the
    //  *   graph. This means all of its operands don't have data dependency of the
    //  *   cluster.
    //  * Merging the op into the cluster does not reorder control dependencies.
    //
    bool CanMergeIntoCluster(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

                        nestedPluginB,
                        nestedPluginC,
                        // plugins with ids prefixed by other plugin ids
                        // cannot be properly supported due to the side-effecting nature
                        // of `PluginDependenciesSpec#id`
                        PluginTree.PluginSpec("flat-plugin.conflict", "IgnoredPlugin"),
                        PluginTree.PluginSpec("nested.plugin-a.conflict", "IgnoredPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValue.java

     * <p>
     * This class can hold a null value.
     */
    @ThreadSafe
    public interface CalculatedValue<T> {
        // TODO(https://github.com/gradle/gradle/issues/24767): with JSpecify, the nullable nature of the type argument <T> should be expressed as <T extends @Nullable Object>.
    
        /**
         * Returns the value, failing if it has not been calculated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      // written".
      LogicalResult AnalyzeRegion(Region& region);
    
      // If an op is not one of the handled ones, we assume all resource usages
      // within its purview are mutating in nature.
      void PropagatePotentiallyWrittenWithinUnhandledOp(Operation* op);
    
      // Given a Region associated with the callee and operands from the
      // corresponding callOp, propagate the potentially written decision to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                        artifact.getGroupId(), artifact.getArtifactId(), MAVEN_METADATA_XML, Metadata.Nature.RELEASE);
            } else if (LATEST.equals(version)) {
                metadata = new DefaultMetadata(
                        artifact.getGroupId(),
                        artifact.getArtifactId(),
                        MAVEN_METADATA_XML,
                        Metadata.Nature.RELEASE_OR_SNAPSHOT);
            } else if (version.endsWith(SNAPSHOT)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. pkg/cache/ttlCache.go

    // will fail after the year 2262. Sorry, you'll need to upgrade to a newer version
    // of Istio at that time :-)
    //
    // This code does some trickery with finalizers in order to avoid the need for a Close
    // method. Given the nature of this code, forgetting to call Close on one of these objects
    // can lead to a substantial permanent memory leak in a process by causing the cache to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                        artifact.getGroupId(), artifact.getArtifactId(), MAVEN_METADATA_XML, Metadata.Nature.RELEASE);
            } else if (LATEST.equals(version)) {
                metadata = new DefaultMetadata(
                        artifact.getGroupId(),
                        artifact.getArtifactId(),
                        MAVEN_METADATA_XML,
                        Metadata.Nature.RELEASE_OR_SNAPSHOT);
            } else if (version.endsWith(SNAPSHOT)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. pkg/test/framework/features/README.md

    ```
    
    where "usability.observability.status" is the feature, and "exist-by-default" is the scenario in the first case, and the second case has no scenario.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    We make changes to Guava's public [APIs][], including adding new APIs, very
    carefully. Because of this, if you're interested in seeing a new feature in
    Guava, the best approach is to create an [issue][] (or comment on an existing
    issue if there is one) requesting the feature and describing specific use cases
    for it.
    
    If the feature has merit, it will go through a thorough process of API design
    and review. Any code should come after this.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top