Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 380 for Constraint (0.17 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.td

    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    include "tensorflow/compiler/mlir/lite/utils/utils.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    def NotFromDequant : Constraint<CPred<"NotFromDequant($0)">>;
    
    // Fuses TFL_FullyConnectedOp and TFL_TransposeOp Rhs to TFL_BatchMatMulOp when
    // it's used by TFL_BatchMatMulOp and "transpose_lhs" is true.
    def FuseTransposeFCLhsToBatchMatmul : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 23:44:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

                val selector = readNonNull<ComponentSelector>()
                val constraint = readBoolean()
                LocalComponentDependencyMetadata(
                    selector,
                    null,
                    emptyList(),
                    emptyList(),
                    false,
                    false,
                    true,
                    constraint,
                    false,
                    null
                )
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

        /**
         * Runs the given action and disallows the current thread from attempting to acquire or release any project locks.
         * Applying this constraint means that the thread will not block waiting for a project lock and cause a deadlock.
         * This constraint also means that it does not need to release its project locks when it needs to block while waiting for some operation to complete.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. samples/ambient-argo/documentation/argo-reference-arch.dot

        }
        fontsize="32"
        label = "Application Cluster";
        style=filled
        color=deepskyblue
    
      }
      
      edge[weight=5]
      appfiles[label="application/*"]
      app -> appfiles [constraint=false]
      appfiles -> appcontents
      appfiles -> appwp
      appfiles -> ig
      appfiles -> nwc
      ztunchart[label="ztunnel",class="helm"]
      ztunnel -> ztunchart -> ztunnelds
      istiodchart[label="istiod",class="helm"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.BY_ANCESTOR;
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.CONSTRAINT;
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.FORCED;
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.REQUESTED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

         * Creates a new, empty work graph for this build.
         *
         * Note: Only one thread can be using worker graphs from a build, and this method blocks if some other thread is using a graph for this build.
         * Eventually, this constraint should be removed, so that it is possible to populate and run multiple work graphs concurrently.
         */
        BuildWorkGraph newWorkGraph();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyModuleResolveMetadata.java

         *
         * @return the extra info for the module
         */
        ImmutableMap<NamespaceId, String> getExtraAttributes();
    
        /**
         * Returns this metadata with all dependencies transformed to use the dynamic constraint version.
         */
        IvyModuleResolveMetadata withDynamicConstraintVersions();
    
        ImmutableList<IvyDependencyDescriptor> getDependencies();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. migrator.go

    	DropColumn(dst interface{}, field string) error
    	AlterColumn(dst interface{}, field string) error
    	MigrateColumn(dst interface{}, field *schema.Field, columnType ColumnType) error
    	// MigrateColumnUnique migrate column's UNIQUE constraint, it's part of MigrateColumn.
    	MigrateColumnUnique(dst interface{}, field *schema.Field, columnType ColumnType) error
    	HasColumn(dst interface{}, field string) bool
    	RenameColumn(dst interface{}, oldName, field string) error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

            then:
            noExceptionThrown()
    
            when:
            runAndFail("missingPath")
    
            then:
            failureHasCause("Required keys [path] are missing from map")
        }
    
        def "can add constraint on root project"() {
            given:
            mavenRepo.module("org", "foo").publish()
            buildFile << """
                configurations {
                    dependencyScope("deps")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

        /**
         * I think the test above: {@link JavaPlatformEcosystemIntegrationTest#"Configuration.copy() should when configuration contains project dependency constraints"}
         * should be sufficient to cover this case, which seems to apply to any configurations that has a project dependency constraint
         * and is independent of the involvement of the Java Platform plugin.  But I'll leave this test here just in case for now.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top