Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for Constraint (0.19 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    only by blank lines and other comments. These rules mean that in Go
    files a build constraint must appear before the package clause.
    
    To distinguish build constraints from package documentation,
    a build constraint should be followed by a blank line.
    
    A build constraint comment is evaluated as an expression containing
    build tags combined by ||, &&, and ! operators and parentheses.
    Operators have the same meaning as in Go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/MessageBuilderHelper.java

                EdgeState target = Iterators.getLast(path.iterator());
                StringBuilder sb = new StringBuilder();
                if (target.getSelector().getDependencyMetadata().isConstraint()) {
                    sb.append("Constraint path ");
                } else {
                    sb.append("Dependency path ");
                }
                boolean first = true;
                String variantDetails = null;
                for (EdgeState e : path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    	replaceDirective = "REPLACE"
    	accessDirective  = "ACCESS"
    )
    
    // Parses location constraint from the incoming reader.
    func parseLocationConstraint(r *http.Request) (location string, s3Error APIErrorCode) {
    	// If the request has no body with content-length set to 0,
    	// we do not have to validate location constraint. Bucket will
    	// be created at default region.
    	locationConstraint := createBucketLocationConfiguration{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            try {
                DependencyMetadata dependencyMetadata = selectorState.getDependencyMetadata();
                boolean constraint = dependencyMetadata.isConstraint();
                if (constraint) {
                    ComponentSelector selector = dependencyMetadata.getSelector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. schema/naming.go

    }
    
    // IndexName generate index name
    func (ns NamingStrategy) IndexName(table, column string) string {
    	return ns.formatName("idx", table, ns.toDBName(column))
    }
    
    // UniqueName generate unique constraint name
    func (ns NamingStrategy) UniqueName(table, column string) string {
    	return ns.formatName("uni", table, ns.toDBName(column))
    }
    
    func (ns NamingStrategy) formatName(prefix, table, name string) string {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/go/types/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.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0)".
         * <p>
         * Shortcut for {@code getService(VersionParser.class).parseVersionConstraint(...)}.
         *
         * @param versionConstraint the version string to parse
         * @return the version constraint parsed from the given string
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top