Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 233 for Constraint (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

            then:
            resolve.expectDefaultConfiguration('runtime')
            resolve.expectGraph {
                root(":", ":depLock:") {
                    edge("org:foo:1.+", "org:foo:1.0")
                    constraint("org:foo:$constraintVersion", "org:foo:1.0") {
                        byConstraint("dependency was locked to version '1.0'$extraReason")
                    }
                }
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/globals.go

    	GlobalStaleUploadsCleanupInterval = time.Hour * 6 // 6 hrs.
    
    	// Refresh interval to update in-memory iam config cache.
    	globalRefreshIAMInterval = 10 * time.Minute
    
    	// Limit of location constraint XML for unauthenticated PUT bucket operations.
    	maxLocationConstraintSize = 3 * humanize.MiByte
    
    	// Maximum size of default bucket encryption configuration allowed
    	maxBucketSSEConfigSize = 1 * humanize.MiByte
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top