Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for substituted (0.15 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                        extendsFrom conf
                    }
                    substituted {
                        extendsFrom conf
                    }
                }
                configurations.forced.resolutionStrategy.force 'org:leaf:1.0'
                configurations.substituted.resolutionStrategy.dependencySubstitution {
                    substitute module('org:leaf') using module('org:leaf:1.0')
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/types2/named.go

    //  - We say that a Named type is "expanded" if it is an instantiated type and
    //    type parameters in its underlying type and methods have been substituted
    //    with the type arguments from the instantiation. A type may be partially
    //    expanded if some but not all of these details have been substituted.
    //    Similarly, we refer to these individual details (underlying type or
    //    method) as being "expanded".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                        edge('org:foo:2.0', 'org:foo:0.11').selectedByRule('because I can')
                    }
                }
            }
        }
    
        def "a substitution does not leak substituted strict version constraint"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:foo:2.0'()
                'org:new:1.0'()
                'org:bar:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. src/go/types/named.go

    //  - We say that a Named type is "expanded" if it is an instantiated type and
    //    type parameters in its underlying type and methods have been substituted
    //    with the type arguments from the instantiation. A type may be partially
    //    expanded if some but not all of these details have been substituted.
    //    Similarly, we refer to these individual details (underlying type or
    //    method) as being "expanded".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K 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. android/guava/src/com/google/common/base/Verify.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 VerifyException if {@code expression} is {@code false}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  10. 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)
Back to top