Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for substitutions (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

                });
                // We have to analyze external and project dependencies to get full hierarchies, since
                // for example user could use dependency substitution to replace external dependency with project dependency.
                config.componentFilter(componentId -> !isGradleApi(componentId));
            }).getFiles();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    	$PATH
    		The $PATH of the parent process, with $GOROOT/bin
    		placed at the beginning. This causes generators
    		that execute 'go' commands to use the same 'go'
    		as the parent 'go generate' command.
    
    Other than variable substitution and quoted-string evaluation, no
    special processing such as "globbing" is performed on the command
    line.
    
    As a last step before running the command, any invocations of any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

            this.useGlobalDependencySubstitutionRules = objectFactory.property(Boolean.class).convention(true);
            // This is only used for testing purposes so we can test handling of fluid dependencies without adding dependency substitution rule
            assumeFluidDependencies = Boolean.getBoolean(ASSUME_FLUID_DEPENDENCIES);
        }
    
        @Override
        public void maybeDiscardStateRequiredForGraphResolution() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Joiner.java

        return join(iterable(first, second, rest));
      }
    
      /**
       * Returns a joiner with the same behavior as this one, except automatically substituting {@code
       * nullText} for any provided null elements.
       */
      public Joiner useForNull(String nullText) {
        checkNotNull(nullText);
        return new Joiner(this) {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Joiner.java

        return join(iterable(first, second, rest));
      }
    
      /**
       * Returns a joiner with the same behavior as this one, except automatically substituting {@code
       * nullText} for any provided null elements.
       */
      public Joiner useForNull(String nullText) {
        checkNotNull(nullText);
        return new Joiner(this) {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. src/go/types/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"\$var" ) &&
    #   set -- "\${ARGS[@]}" "\$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.renderer.FirRenderer
    import org.jetbrains.kotlin.fir.resolve.SessionHolderImpl
    import org.jetbrains.kotlin.fir.resolve.substitution.substitutorByMap
    import org.jetbrains.kotlin.fir.resolve.toSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.*
    import org.jetbrains.kotlin.fir.symbols.lazyResolveToPhase
    import org.jetbrains.kotlin.fir.types.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

            """
    
    
            when: fails()
            then: failure.assertHasCause("Cannot change resolution strategy of dependency configuration ':a' after it has been resolved")
        }
    
        def "does not allow changing substitution rules on a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top