Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 282 for substituted (0.15 sec)

  1. src/cmd/gofmt/doc.go

    	pattern -> replacement
    
    Both pattern and replacement must be valid Go expressions.
    In the pattern, single-character lowercase identifiers serve as
    wildcards matching arbitrary sub-expressions; those expressions
    will be substituted for the same identifiers in the replacement.
    
    When gofmt reads from standard input, it accepts either a full Go program
    or a program fragment.  A program fragment must be a syntactically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            // 1. the graph used to get the resolved version has nothing to do with the dependencies we're trying to get versions for (likely user error)
            // 2. the graph contains first-level dependencies which have been substituted (likely) so we're going to iterate on dependencies instead
            for (DependencyResult dependencyResult : allDependencies) {
                if (dependencyResult instanceof ResolvedDependencyResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    new LockOutOfDateException("Did not resolve '" + forcedModule.getDisplayName() + "' which has been forced / substituted to a different version: '" + entry.getValue() + "'")));
            }
            return completedFailures;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

            then:
            result.assertTaskExecuted(":buildC:jar")
            result.assertTaskExecuted(":buildB:jar")
            result.assertTaskExecuted(":jar")
        }
    
        def "a nested included build is substituted into all other builds"() {
            given:
            dependency(buildA, "org.test:buildB:1.2")
            dependency(buildA, "org.test:buildC:1.2")
    
            def buildC = singleProjectBuild("buildC") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. ci/official/utilities/setup_macos.sh

    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
      # By default, aliases are only expanded in interactive shells, which means
      # that they are not substituted for their corresponding commands in shell
      # scripts. By setting "expand_aliases", we enable alias expansion in
      # non-interactive shells as well.
      shopt -s expand_aliases
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            failures.size() == 1
            failures.each {
                assert it.problem instanceof LockOutOfDateException
                assert it.problem.message.contains("Did not resolve 'org:foo:1.1' which has been forced / substituted to a different version: '1.0'")
            }
        }
    
        def 'invokes locking provider on writeLocks with visited modules'() {
            given:
            def identifier = newId(mid, '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            this.context = tc;
        }
    
    
        /**
         * Create an <tt>NtlmPasswordAuthentication</tt> object from a
         * domain, username, and password. Parameters that are <tt>null</tt>
         * will be substituted with <tt>jcifs.smb.client.domain</tt>,
         * <tt>jcifs.smb.client.username</tt>, <tt>jcifs.smb.client.password</tt>
         * property values.
         * 
         * @param tc
         *            context to use
         * @param domain
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate_test.go

    	}
    
    	// Now change the value of $X and see if the recorded definition is
    	// still intact (vs. having the $_X already substituted out)
    
    	os.Setenv("_X", "Z")
    	inLine = "//go:generate CMD0"
    	expected = []string{"abZcd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. src/unicode/utf16/utf16_test.go

    	r1, r2 rune
    	want   rune
    }{
    	{0xd800, 0xdc00, 0x10000},
    	{0xd800, 0xdc01, 0x10001},
    	{0xd808, 0xdf45, 0x12345},
    	{0xdbff, 0xdfff, 0x10ffff},
    	{0xd800, 'a', 0xfffd}, // illegal, replacement rune substituted
    }
    
    func TestDecodeRune(t *testing.T) {
    	for i, tt := range decodeRuneTests {
    		got := DecodeRune(tt.r1, tt.r2)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) IsRoot() bool {
    	if t.full != nil {
    		return t.full.IsRoot()
    	}
    	return t.language == _und
    }
    
    // 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.full != nil {
    		return Make(t.full.Parent())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top