Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 1,131 for Constraint (0.15 sec)

  1. guava/src/com/google/common/collect/MutableClassToInstanceMap.java

      }
    
      @Override
      protected Map<Class<? extends @NonNull B>, B> delegate() {
        return delegate;
      }
    
      /**
       * Wraps the {@code setValue} implementation of an {@code Entry} to enforce the class constraint.
       */
      private static <B extends @Nullable Object> Entry<Class<? extends @NonNull B>, B> checkedEntry(
          final Entry<Class<? extends @NonNull B>, B> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // Type() == typ. For *types.TypeParam, *types.Interface, and *types.Union, see
    // below.
    //
    // Structural type restrictions of a type parameter are created via
    // non-interface types embedded in its constraint interface (directly, or via a
    // chain of interface embeddings). For example, in the declaration type
    // T[P interface{~int; m()}] int the structural restriction of the type
    // parameter P is ~int.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.framework.util.defaults
    org.checkerframework.framework.util.dependenttypes
    org.checkerframework.framework.util.element
    org.checkerframework.framework.util.typeinference
    org.checkerframework.framework.util.typeinference.constraint
    org.checkerframework.framework.util.typeinference.solver
    org.checkerframework.javacutil
    org.checkerframework.javacutil.dist
    org.checkerframework.javacutil.trees
    org.eclipse.jdt.annotation
    org.eclipse.jgit.annotations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

            testing {
                suites {
                    test {
                        dependencies {
                            // Constrain commons-lang3 and guava
                            implementation constraint('org.apache.commons:commons-lang3:3.12.0')
                            implementation constraint('com.google.guava:guava:33.0.0-jre')
                        }
                    }
                    integTest(JvmTestSuite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

         */
        boolean isTransitive();
    
        /**
         * Is this a strong dependency, does it is merely a constraint on the module to select if brought in
         * by another dependency? ("Optional" dependencies are "constraints")
         */
        boolean isConstraint();
    
        /**
         * Is this a dependency that "pulls up" strict version constraints from the target node?
         */
        boolean isEndorsingStrictVersions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_canonicalize.td

    def GetSqueezedPermutation: NativeCodeCall<"GetSqueezedPermutation($0, $1)">;
    
    // Check to see if the tensor dimensions can be Squeezed by eliminating 1s'
    def CanSqueezeTensor : Constraint<CPred<
      "GetShape($0).getNumElements() > GetSqueezedShape($0).getNumElements()">>;
    
    
    // Pattern to convert TFL_TransposeOp with rank>6 to rank<=6 if there are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 20:41:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // finishing an execution node. Adding this constraint here means that we can make all build operation queue workers compliant with this
                            // constraint and then gradually roll this out to other worker threads, such as task action workers.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

            components.each {
                writer.println("component:${formatComponent(it)}")
            }
            dependencies.each {
                writer.println("dependency:${it.constraint ? '[constraint]' : ''}[from:${it.from.id}][${it.requested}->${it.selected.id}]")
            }
        }
    
        protected String formatComponent(ResolvedComponentResult result) {
            String type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    	// Use Typ[Invalid] for the type constraint to ensure that a type
    	// is present even if the actual constraint has not been assigned
    	// yet.
    	// TODO(gri) Need to systematically review all uses of type parameter
    	//           constraints to make sure we don't rely on them if they
    	//           are not properly set yet.
    	for _, name := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DependencyManagementIntegrationTest.kt

                }
    
                // Declare dependency constraints
    
                dependencies {
                    constraints {
                        api("in-block:accessor:1.0")
                        api("in-block:accessor-with-action") {
                            version { strictly("1.0") }
                        }
                    }
                    (constraints) {
                        "api"("in-block:string-invoke:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top