Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 599 for Constraint (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    }
                }
            }
        }
    
        private boolean isNodeRejected(DependencyGraphNode node) {
            // That is the state a node is in when it was selected but the selection violates a constraint (reject or strictly)
            return node.getComponent().isRejected();
        }
    
        private void addChangingModule(ModuleComponentIdentifier id) {
            if (changingResolvedModules == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    include "tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td"
    
    def NonScalarRankedType : Type<And<[Neg<HasAnyRankOfPred<[0]>>, HasRankPred]>,
                             "Non scalar type">;
    
    def HasSingleElement: Constraint<CPred<"($0.size() == 1)">>;
    
    def EmptyList: NativeCodeCall<"llvm::SmallVector<mlir::Value>{}">;
    
    // Creates a tf.ReadVariable op that reads a resource `$2` that has the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    new" field or method of a type that is itself "too new", as this may
    have false positives, for example if fields or methods are accessed
    through a type alias that is guarded by a Go version constraint.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "stdversion",
    	Doc:              Doc,
    	Requires:         []*analysis.Analyzer{inspect.Analyzer},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. docs/en/docs/history-design-future.md

    Then I contributed to it, to make it fully compliant with JSON Schema, to support different ways to define constraint declarations, and to improve editor support (type checks, autocompletion) based on the tests in several editors.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * Starting an external process with a standard API (for example, {@code java.lang.ProcessBuilder}) is
     * also allowed.
     * </p>
     *
     * Implementations of ValueSource are subject to the following constraint:
     * <ul>
     *     <li>Do not implement {@link #getParameters()} in your class, the method will be implemented by Gradle.</li>
     * </ul>
     *
     * @param <T> The type of value obtained from this source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         */
        Dependency localGroovy();
    
        /**
         * Returns the dependency constraint handler for this project.
         *
         * @return the dependency constraint handler for this project
         * @since 4.5
         */
        DependencyConstraintHandler getConstraints();
    
        /**
         * Configures dependency constraint for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
        if (!(((*root.getODSResults(2).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/lookup.go

    	// If we didn't find anything and if we have a type parameter with a core type,
    	// see if there is a matching field (but not a method, those need to be declared
    	// explicitly in the constraint). If the constraint is a named pointer type (see
    	// above), we are ok here because only fields are accepted as results.
    	const enableTParamFieldLookup = false // see go.dev/issue/51576
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/go/types/lookup.go

    	// If we didn't find anything and if we have a type parameter with a core type,
    	// see if there is a matching field (but not a method, those need to be declared
    	// explicitly in the constraint). If the constraint is a named pointer type (see
    	// above), we are ok here because only fields are accepted as results.
    	const enableTParamFieldLookup = false // see go.dev/issue/51576
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *     </p>
     *     <p>In general, a provider that returns the value in any state will fail when it is queried before the value is known. This constraint isn't 100% implemented everywhere yet.</p>
     *     </li>
     *     <li>"usable". This is currently somewhat vague, but basically means that if the content is built by some work node, then that work node has already executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top