Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 596 for Constraint (0.21 sec)

  1. src/cmd/asm/internal/lex/tokenizer.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package lex
    
    import (
    	"go/build/constraint"
    	"io"
    	"os"
    	"strings"
    	"text/scanner"
    	"unicode"
    
    	"cmd/asm/internal/flags"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    // A Tokenizer is a simple wrapping of text/scanner.Scanner, configured
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 20:35:21 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectRegistry.java

            return GUtil.getOrDefault(subProjects.get(path), HashSet::new);
        }
    
        @Override
        public Set<T> findAll(Spec<? super T> constraint) {
            Set<T> matches = new HashSet<T>();
            for (T project : projects.values()) {
                if (constraint.isSatisfiedBy(project)) {
                    matches.add(project);
                }
            }
            return matches;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:17 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/device_target.cc

    namespace ph = std::placeholders;
    
    LogicalResult DeviceTarget::RegisterKernel(
        llvm::StringRef kernel, const KernelSpecs::Signature& signature,
        const ScaleConstraintType constraint) {
      if (failed(specs_[kernel].Add(signature, {constraint, {}}))) return failure();
      switch (constraint) {
        case ScaleConstraintType::OutputInputSameScale:
          specs_[kernel].WithImpl(std::bind(&DeviceTarget::DecomposeSameScale,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyCollector.java

            }
    
            ((DependencyConstraintInternal) dependencyConstraint).addMutationValidator(constraint -> {
                if (((PropertyInternal<?>) getDependencyConstraints()).isFinalized()) {
                    throw new InvalidUserCodeException("Cannot mutate dependency constraint " + constraint + " after it has been finalized");
                }
            });
    
            return dependencyConstraint;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue43527.go

    // license that can be found in the LICENSE file.
    
    package p
    
    const L = 10
    
    type (
    	_        [L]struct{}
    	_        [A /* ERROR "undefined array length A or missing type constraint" */ ]struct{}
    	_        [B /* ERROR "invalid array length B" */ ]struct{}
    	_[A any] struct{}
    
    	B int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 392 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/import_unix_tag.txt

    # Regression test for https://go.dev/issue/54712: the "unix" build constraint
    # was not applied consistently during package loading.
    
    go list -x -f '{{if .Module}}{{.ImportPath}}{{end}}' -deps .
    stdout 'example.com/version'
    
    -- go.mod --
    module example
    
    go 1.19
    
    require example.com/version v1.1.0
    -- go.sum --
    example.com/version v1.1.0 h1:VdPnGmIF1NJrntStkxGrF3L/OfhaL567VzCjncGUgtM=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 19:01:26 UTC 2022
    - 751 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

            then:
            expectStandardJVM()
        }
    
        def "can enforce standard JVM variant on Android by constraint"() {
            given:
            prepareResolve('releaseCompileClasspath', 'jre')
    
            buildFile << """
                dependencies {
                    constraints {
                        implementation('org:producer:1.0') {
                            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. schema/interfaces.go

    package schema
    
    import (
    	"gorm.io/gorm/clause"
    )
    
    // ConstraintInterface database constraint interface
    type ConstraintInterface interface {
    	GetName() string
    	Build() (sql string, vars []interface{})
    }
    
    // GormDataTypeInterface gorm data type interface
    type GormDataTypeInterface interface {
    	GormDataType() string
    }
    
    // FieldNewValuePool field new scan value pool
    type FieldNewValuePool interface {
    	Get() interface{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 980 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/PlatformDependencyModifiers.java

                if (dependency instanceof ExternalDependency) {
                    String version = dependency.getVersion();
                    ((ExternalDependency) dependency).version(constraint -> constraint.strictly(version));
                }
                dependency.attributes(attributeContainer -> attributeContainer.attribute(Category.CATEGORY_ATTRIBUTE, getObjectFactory().named(Category.class, Category.ENFORCED_PLATFORM)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

                        (TFL_HardSwishOp $input)>;
    
    def IsNchwLayoutOp: Constraint<CPred<
      "$0.get(\"is_nchw_op\") && $0.get(\"is_nchw_op\").dyn_cast<BoolAttr>() "
          "== mlir::BoolAttr::get($_builder.getContext(), true)">>;
    
    def IsNhwcLayoutOp: Constraint<Neg<IsNchwLayoutOp.predicate>>;
    
    // TODO(b/343278954): Move the creation of transposes to a separate prepare pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top