Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 566 for substituted (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    The same rule _without_ the `platform` keyword would try to substitute _regular dependencies_ with a regular dependency, which is not what you want, so it's important to understand that the substitution rules apply on a _dependency specification_: it matches the requested dependency (`substitute XXX`) with a substitute (`using YYY`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesParallelIntegrationTest.groovy

                    }
                    tasks.producer.dependsOn(slow)
                }
                project(':consumer') {
                    dependencies {
                        // An external dependency that will be substituted with a dependency on project 'producer'
                        implementation "libs:producer:1.0"
                    }
                }
            """
    
            when:
            succeeds(":resolve", "--parallel")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         * The properties available for use in the configuration file. These are substituted into the configuration file.
         */
        @Nullable
        @Optional
        @Input
        public Map<String, Object> getConfigProperties() {
            return configProperties;
        }
    
        /**
         * The properties available for use in the configuration file. These are substituted into the configuration file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // SHA512 block step.
    // In its own file so that a faster assembly or C version
    // can be substituted easily.
    
    package sha512
    
    import "math/bits"
    
    var _K = []uint64{
    	0x428a2f98d728ae22,
    	0x7137449123ef65cd,
    	0xb5c0fbcfec4d3b2f,
    	0xe9b5dba58189dbbc,
    	0x3956c25bf348b538,
    	0x59f111f1b605d019,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // SHA256 block step.
    // In its own file so that a faster assembly or C version
    // can be substituted easily.
    
    package sha256
    
    import "math/bits"
    
    var _K = []uint32{
    	0x428a2f98,
    	0x71374491,
    	0xb5c0fbcf,
    	0xe9b5dba5,
    	0x3956c25b,
    	0x59f111f1,
    	0x923f82a4,
    	0xab1c5ed5,
    	0xd807aa98,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    ```
    cd my-app
    echo "includeBuild '../my-utils'" >> settings.gradle
    gradle run
    ```
    
    With this configuration, the module dependencies from `my-app` to `my-utils` will always be substituted with project dependencies.
    
    While simple, this approach has the downside of modifying the `my-app` build.
    
    == Using separate composite build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                buildFile << """
                    apply plugin: 'java-library'
                """
            }
        }
    
        def "EclipseProject model has closed project dependencies substituted in composite"() {
            setup:
            def workspace = eclipseWorkspace([project("buildA", buildA),
                                              project("buildB", buildB),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. cluster/addons/dns/nodelocaldns/README.md

    This feature is graduating to GA in release 1.18(Beta in release 1.15).
    
    ## nodelocaldns addon template
    
    This directory contains the addon config yaml - `nodelocaldns.yaml`
    The variables will be substituted by the configure scripts when the yaml is copied into master.
    
    We have the following variables in the yaml:
    `__PILLAR__DNS__SERVER__` - set to kube-dns service IP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            "2.0"      | "2.0"         | 'moduleId("myorg", "ModuleC", "2.0")' | false                | "substitute project(':ModuleC') using module('myorg:ModuleC:2.0')"
            "2.1"      | "2.0"         | 'moduleId("myorg", "ModuleC", "2.1")' | false                | "substitute project(':ModuleC') using module('myorg:ModuleC:2.1')"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/syms.go

    // of the "any" placeholder type will be substituted.
    func LookupRuntime(name string, types_ ...*types.Type) *ir.Name {
    	s := ir.Pkgs.Runtime.Lookup(name)
    	if s == nil || s.Def == nil {
    		base.Fatalf("LookupRuntime: can't find runtime.%s", name)
    	}
    	n := s.Def.(*ir.Name)
    	if len(types_) != 0 {
    		n = substArgTypes(n, types_...)
    	}
    	return n
    }
    
    // SubstArgTypes substitutes the given list of types for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top