Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 278 for Constraint (0.28 sec)

  1. 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)
  2. src/crypto/ecdh/nist.go

    	"errors"
    	"internal/byteorder"
    	"io"
    	"math/bits"
    )
    
    type nistCurve[Point nistPoint[Point]] struct {
    	name        string
    	newPoint    func() Point
    	scalarOrder []byte
    }
    
    // nistPoint is a generic constraint for the nistec Point types.
    type nistPoint[T any] interface {
    	Bytes() []byte
    	BytesX() ([]byte, error)
    	SetBytes([]byte) (T, error)
    	ScalarMult(T, []byte) (T, error)
    	ScalarBaseMult([]byte) (T, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/go/build/build.go

    			}
    			line = bytes.TrimSpace(line)
    			if !bytes.HasPrefix(line, slashSlash) || !bytes.Contains(line, plusBuild) {
    				continue
    			}
    			text := string(line)
    			if !constraint.IsPlusBuild(text) {
    				continue
    			}
    			if x, err := constraint.Parse(text); err == nil {
    				if !ctxt.eval(x, allTags) {
    					shouldBuild = false
    				}
    			}
    		}
    	}
    
    	return shouldBuild, sawBinaryOnly, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		if errors.Is(err, gover.ErrTooNew) {
    			toolchain.SwitchOrFatal(ctx, err)
    		}
    
    		var constraint *modload.ConstraintError
    		if !errors.As(err, &constraint) {
    			base.Fatal(err)
    		}
    
    		if cfg.BuildV {
    			// Log complete paths for the conflicts before we summarize them.
    			for _, c := range constraint.Conflicts {
    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
              {
                "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
                "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    				return
    			}
    
    			// go: directive (but be conservative and test)
    			if strings.HasPrefix(text, "go:") {
    				if p.top && strings.HasPrefix(msg, "//go:build") {
    					if x, err := constraint.Parse(msg); err == nil {
    						p.goVersion = constraint.GoVersion(x)
    					}
    				}
    				if pragh != nil {
    					p.pragma = pragh(p.posAt(line, col+2), p.scanner.blank, text, p.pragma) // +2 to skip over // or /*
    				}
    			}
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. 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)
  8. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, err)
    		}
    		allErrs = append(allErrs, validateMinDomains(subFldPath.Child("minDomains"), constraint.MinDomains, constraint.WhenUnsatisfiable)...)
    		if err := validateNodeInclusionPolicy(subFldPath.Child("nodeAffinityPolicy"), constraint.NodeAffinityPolicy); err != nil {
    			allErrs = append(allErrs, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <code>comparable</code> may only be used as type constraints. They cannot be the types of
    values or variables, or components of other, non-interface types.
    </p>
    
    <h4 id="Satisfying_a_type_constraint">Satisfying a type constraint</h4>
    
    <p>
    A type argument <code>T</code><i> satisfies</i> a type constraint <code>C</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. 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)
Back to top