Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 298 for substituted (0.43 sec)

  1. src/go/types/instantiate.go

    			return updateContexts(inst)
    		}
    	}
    
    	switch orig := orig.(type) {
    	case *Named:
    		res = check.newNamedInstance(pos, orig, targs, expanding) // substituted lazily
    
    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:bar:1.0")
                }
            }
        }
    
        void "dependency constraints on substituted module is recognized properly"() {
            given:
            mavenRepo.module("org", "foo", '1.0').publish()
            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.1').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

                    }
    
                    configurations.compile.resolutionStrategy.dependencySubstitution {
                        substitute module('org.original:original') using module('org.other:another:0.1')
                        substitute module('org.utils:api') using module('org.utils:api:0.1')
                    }
                }
    """
    
            when:
            run(":impl:dependencies")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // components.
    func (t Tag) HasString() bool {
    	return t.str != ""
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.str != "" {
    		// Strip the variants and extensions.
    		b, s, r := t.Raw()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/language.go

    	for str != "" {
    		x, str = nextToken(str)
    		v = append(v, Variant{x})
    	}
    	return v
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    //
    // Parent returns a tag for a less specific language that is mutually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Previously, `buildSrc` was built in such a way that included builds were ignored from the root build.
    
    Since Gradle 6.7, `buildSrc` can see any included build from the root build.
    This may cause dependencies to be substituted from an included build in `buildSrc`.
    This may also change the order in which some builds are executed if an included build is needed by `buildSrc`.
    
    ==== Updates to default tool integration versions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/encoding/base64/base64.go

    // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
    // (RFC 1421).  RFC 4648 also defines an alternate encoding, which is
    // the standard encoding with - and _ substituted for + and /.
    type Encoding struct {
    	encode    [64]byte   // mapping of symbol index to symbol byte value
    	decodeMap [256]uint8 // mapping of symbol byte value to symbol index
    	padChar   rune
    	strict    bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

             * Marks that this node has a forced vers.
             */
            NodeBuilder forced() {
                reasons << 'forced'
                this
            }
    
            /**
             * Marks that this node was substituted in a composite.
             */
            NodeBuilder compositeSubstitute() {
                reasons << 'composite build substitution'
                this
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top