Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 224 for Constraint (0.22 sec)

  1. src/cmd/compile/internal/types2/unify.go

    		if debug {
    			assert(u.asBoundTypeParam(x) == nil)
    		}
    		// By definition, a valid type argument must be in the type set of
    		// the respective type constraint. Therefore, the type argument's
    		// underlying type must be in the set of underlying types of that
    		// constraint. If there is a single such underlying type, it's the
    		// constraint's core type. It must match the type argument's under-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    == Accessing the build service concurrently
    
    You can constrain concurrent execution when you register the service, by using the `Property` object returned from link:{javadocPath}/org/gradle/api/services/BuildServiceSpec.html#getMaxParallelUsages--[BuildServiceSpec.getMaxParallelUsages()].
    When this property has no value, which is the default, Gradle does not constrain access to the service.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

            mavenRepo.module("test", "module1", "11.1.0.1").publish()
    
            settingsFile << "include 'plat'"
            file("plat/build.gradle") << """
                plugins {
                    id("java-platform")
                }
    
                dependencies {
                    constraints {
                        api "test:module1:11.1.0.1"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/cmd/dist/buildtool.go

    	"cmd/internal/telemetry",
    	"cmd/link",
    	"cmd/link/internal/...",
    	"compress/flate",
    	"compress/zlib",
    	"container/heap",
    	"debug/dwarf",
    	"debug/elf",
    	"debug/macho",
    	"debug/pe",
    	"go/build/constraint",
    	"go/constant",
    	"go/version",
    	"internal/abi",
    	"internal/coverage",
    	"cmd/internal/cov/covcmd",
    	"internal/bisect",
    	"internal/buildcfg",
    	"internal/goarch",
    	"internal/godebugs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

        }
    
        void hasVersion(String id, String version) {
            assert model.hasVersion(id)
            def versionConstraint = model.getVersion(id)?.version
            assert versionConstraint != null: "Expected a version constraint with name $id but didn't find one"
            def actual = versionConstraint.toString()
            assert actual == version
        }
    
        void hasPlugin(String alias, String id, String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            }
    
            for (ComponentSelectionDescriptorInternal descriptor : dependencyReasons) {
                if (descriptor.getCause() == ComponentSelectionCause.REQUESTED || descriptor.getCause() == ComponentSelectionCause.CONSTRAINT) {
                    if (rejectedBySelector != null) {
                        descriptor = descriptor.withDescription(new RejectedBySelectorReason(rejectedBySelector, descriptor));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    //   `tf_saved_model.index_path`, whereas the init function of type
    //   `kTfSavedModelInitializerInitType` may have arguments with
    //   `tf_saved_model.bound_input`. This ordering avoids breaking the argument
    //   ordering constraint.
    constexpr std::array<StringRef, 2> kInitializerTypesByMergeOrder = {
        kTfSavedModelInitializerRestoreType, kTfSavedModelInitializerInitType};
    
    // This pass moves all ops from initializer functions to the main function. A
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/cmd/trace/gstate.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"internal/trace"
    	"internal/trace/traceviewer"
    	"internal/trace/traceviewer/format"
    	"strings"
    )
    
    // resource is a generic constraint interface for resource IDs.
    type resource interface {
    	trace.GoID | trace.ProcID | trace.ThreadID
    }
    
    // noResource indicates the lack of a resource.
    const noResource = -1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeMultiset.java

       * {@code ClassCastException} for any elements {@code e1} and {@code e2} in the multiset. If the
       * user attempts to add an element to the multiset that violates this constraint (for example, the
       * user attempts to add a string element to a set whose elements are integers), the {@code
       * add(Object)} call will throw a {@code ClassCastException}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    		}
    		w.typ(typ)
    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) tParamList(list []*TypeParam) {
    	w.byte('[')
    	var prev Type
    	for i, tpar := range list {
    		// Determine the type parameter and its constraint.
    		// list is expected to hold type parameter names,
    		// but don't crash if that's not the case.
    		if tpar == nil {
    			w.error("nil type parameter")
    			continue
    		}
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top