Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,131 for Constraint (0.15 sec)

  1. src/internal/fuzz/counters_unsupported.go

    // TODO: expand the set of supported platforms, with testing. Nothing about
    // the instrumentation is OS specific, but only amd64 and arm64 are
    // supported in the runtime. See src/runtime/libfuzzer*.
    //
    // If you update this constraint, also update internal/platform.FuzzInstrumented.
    //
    //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))
    
    package fuzz
    
    // TODO(#48504): re-enable on platforms where instrumentation works.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/compilersupport.go

    func AsSignature(t Type) *Signature {
    	u, _ := t.Underlying().(*Signature)
    	return u
    }
    
    // If typ is a type parameter, CoreType returns the single underlying
    // type of all types in the corresponding type constraint if it exists, or
    // nil otherwise. If the type set contains only unrestricted and restricted
    // channel types (with identical element types), the single underlying type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 22:58:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/shlo_simplify.td

    include "mlir/IR/CommonTypeConstraints.td"
    
    def CloneF32ElementsAttrWithOnes
      : NativeCodeCall<"DenseElementsAttr::get($0.getType().cast<ShapedType>(), (float)1.0)">;
    
    def NotConstant : Constraint<
        CPred<"$0.isa<BlockArgument>() || !llvm::isa<stablehlo::ConstantOp>($0.getDefiningOp())">,
        "Is not a constant.">;
    
    def : Pat<(StableHLO_DivOp $l,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue43671.go

    	~chan T | ~<-chan T
    }
    
    func _[T any, C RecvChan[T]](ch C) T {
    	return <-ch
    }
    
    func f[T any, C interface{ chan T }](ch C) T {
    	return <-ch
    }
    
    func _(ch chan int) {
    	var x int = f(ch) // test constraint type inference for this case
    	_ = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultDependencyMetadataFactoryTest.groovy

            def selector = created.selector as ModuleComponentSelector
    
            then:
            created.constraint
            selector.group == "g"
            selector.module == "m"
            selector.version == "1"
    
            and:
            created.artifacts.empty
            created.excludes.empty
            !created.force
            !created.transitive
            !created.changing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            ImmutableVersionConstraint constraint = DefaultImmutableVersionConstraint.of(dependencyConstraint);
            ModuleMetadataSpec.Version version = versionFor(constraint, identifier.getVersion());
    
            return new ModuleMetadataSpec.DependencyCoordinates(identifier.getGroup(), identifier.getName(), version);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                action()
                view
            }
    
            DependencyConstraintView constraint(String notation, @DelegatesTo(value=DependencyConstraintView, strategy= Closure.DELEGATE_FIRST) Closure<Void> action = { exists() }) {
                def (String group, String module, String version) = notation.split(':') as List
                constraint(group, module, version, action)
            }
    
            List<Capability> getCapabilities() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_dependency_constraint]]
    == Dependency constraint
    
    A dependency constraint defines requirements that need to be met by a module to make it a valid resolution result for the dependency.
    For example, a dependency constraint can narrow down the set of supported module versions.
    Dependency constraints can be used to express such requirements for transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyDependency.java

         */
        String getConfMapping();
    
        /**
         * If this dependency is marked transitive.
         */
        boolean isTransitive();
    
        /**
         * The dynamic revision constraint originally used for this dependency.
         */
        @Nullable
        String getRevConstraint();
    
        /**
         * The requested artifacts for this dependency.
         */
        Set<DependencyArtifact> getArtifacts();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | By constraint
    | A <<dependency_constraints#sec:adding-constraints-transitive-deps, dependency constraint>> participated in the version selection.
    May be followed by a `because` text.
    
    | By ancestor
    | There is a <<rich_versions#rich-version-constraints, rich version>> with a `strictly` which enforces the version of this dependency.
    
    | Selected by rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top