Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for Constraint (0.28 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/types2/typeset.go

    		case *Interface:
    			// For now we don't permit type parameters as constraints.
    			assert(!isTypeParam(typ))
    			tset := computeInterfaceTypeSet(check, pos, u)
    			// If typ is local, an error was already reported where typ is specified/defined.
    			if pos.IsKnown() && check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(atPos(pos), go1_18, "embedding constraint interface %s", typ) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// not valid.
    	//
    	// Example:
    	//  type _ interface {
    	//   	~int | interface{ m() }
    	//  }
    	InvalidUnion
    
    	// MisplacedConstraintIface occurs when a constraint-type interface is used
    	// outside of constraint position.
    	//
    	// Example:
    	//   type I interface { ~int }
    	//
    	//   var _ I
    	MisplacedConstraintIface
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/go/types/typeset.go

    		case *Interface:
    			// For now we don't permit type parameters as constraints.
    			assert(!isTypeParam(typ))
    			tset := computeInterfaceTypeSet(check, pos, u)
    			// If typ is local, an error was already reported where typ is specified/defined.
    			if pos.IsValid() && check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(atPos(pos), go1_18, "embedding constraint interface %s", typ) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/go/types/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.3K bytes
    - Viewed (0)
Back to top