Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 377 for Constraint (0.17 sec)

  1. src/go/types/typexpr.go

    				if tset.comparable {
    					check.softErrorf(e, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    					check.softErrorf(e, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface contains type constraints", typ)
    				}
    			}
    		}
    	}).describef(e, "check var type %s", typ)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typexpr.go

    				if tset.comparable {
    					check.softErrorf(pos, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface is (or embeds) comparable", typ)
    				} else {
    					check.softErrorf(pos, MisplacedConstraintIface, "cannot use type %s outside a type constraint: interface contains type constraints", typ)
    				}
    			}
    		}
    	}).describef(e, "check var type %s", typ)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                            byAncestor()
                            byConstraint()
                            configuration('extra')
                        }
                    }
                    constraint("org:foo:{strictly 1.0}", "org:foo:1.0")
                    constraint("org:bar:{strictly 1.0}", "org:bar:1.0")
                }
            }
        }
    
        // TODO: This is not desired behavior. We should deprecate and forbid this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                            members.each { member ->
                                constraint(member)
                            }
                            noArtifacts = true
                        }
                        // this is used only in BOMs
                        members.each { member ->
                            constraint(member)
                        }
    
                        withModule(MavenHttpModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

            run 'checkWithApi'
    
            then:
            outputContains("""Module org:bar:1.0
       REQUESTED : requested
       SELECTED_BY_RULE : fix comes from component selection rule
       CONSTRAINT : ${useReason?'This reason comes from a constraint':'constraint'}
    """)
            where:
            useReason << [true, false]
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

                        /**
                         * Adds a dependency constraint to the '$original' configuration.
                         *
                         * @param constraintNotation the dependency constraint notation
                         * @param block the block to use to configure the dependency constraint
                         *
                         * @return the added dependency constraint
                         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. ci/devinfra/docker_windows/Dockerfile

        sdkmanager 'extras;android;m2repository'; \
        sdkmanager 'extras;intel;Hardware_Accelerated_Execution_Manager'; \
        sdkmanager 'extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0'; \
        sdkmanager 'extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.2'; \
        sdkmanager 'patcher;v4'; \
        sdkmanager 'ndk;25.1.8937393'; \
        sdkmanager 'build-tools;27.0.3';
    
    # Install Scoop and packages
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                }
            """
    
            expect:
            succeeds("resolve")
        }
    
        def "modifying dependency and constraint attributes are deprecated after resolution"() {
            given:
            ["1.0", "2.0"].each { version ->
                mavenRepo.module("org", "foo", version).publish()
                mavenRepo.module("org", "bar", version).publish()
                mavenRepo.module("org", "baz", version).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

    // The state for rescaling the propagated quantization parameters. This can be
    // on the input side to satisfy the constraint of previous operation, or on the
    // output side to satisfy the constraint of the next operation.
    struct RequantizeState {
      // Sometimes, we have to "requantize" the quantization result to satisfy all
      // the constraints. The "requantize" can happen either on the input or output
      // of the quantization result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

            then:
            if (supportedInMetadata(metadataType)) {
                assert dependencies.size() == 2
                assert dependencies[0].constraint == addAllDependenciesAsConstraints()
                assert dependencies[1].constraint == addAllDependenciesAsConstraints()
            } else {
                assert dependencies.empty
            }
    
            where:
            metadataType | metadataImplementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top