Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,879 for forSet (0.17 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/BuildEnvironmentIntegrationTest.groovy

            "UTF-8"       | "UTF-8"
            "US-ASCII"    | "US-ASCII"
            null          | Charset.defaultCharset().name()
        }
    
        @Unroll("forked java processes inherit default encoding - input = #inputEncoding, expectedEncoding: #expectedEncoding")
        def "forked java processes inherit default encoding"() {
            given:
            executerEncoding inputEncoding
    
            and:
            file("src", "main", "java").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

    repositories { maven { url "${mavenRepo.uri}" } }
    
    dependencies {
        implementation 'org:foo:1.0'
    }
    
    configurations.all {
        resolutionStrategy {
            force 'org:foo:1.5'
            force 'org:foo:2.0'
            force 'org:foo:1.9'
        }
    }
    
    task checkDeps {
        def compileClasspath = configurations.compileClasspath
        doLast {
            assert compileClasspath*.name == ['foo-1.9.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.CONSTRAINT;
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.FORCED;
    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.REQUESTED;
    
    class DependencyState {
        private final ComponentSelector requested;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/ModuleForcingResolveRule.java

                    details.useTarget(newSelector(key, versionConstraint, selector.getAttributes(), selector.getRequestedCapabilities()), ComponentSelectionReasons.FORCED);
    
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                    }
                    module("org:databind:2.7.9") {
                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                        module('org:annotations:2.7.9') {
                            forced()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    This required the Kotlin DSL to add special integration to work with Groovy closures.
    This has also forced plugins written in languages other than Groovy to use Groovy types for some APIs.
    
    When the Kotlin DSL was introduced, we made an effort to add non-Groovy equivalents for all APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/crypto/x509/root.go

    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    // panic.
    //
    // The fallback behavior can be forced on all platforms, even when there is a
    // system certificate pool, by setting GODEBUG=x509usefallbackroots=1 (note that
    // on Windows and macOS this will disable usage of the platform verification
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                        selectedByRule()
                        forced()
                        module("org.utils:api:1.3") {
                            selectedByRule()
                            forced()
                        }
                    }
                }
            }
        }
    
        void "rule are applied after forced modules"()
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/legacytokentracking/controller.go

    	defer c.queue.Done(key)
    
    	if err := c.syncConfigMap(); err != nil {
    		utilruntime.HandleError(fmt.Errorf("while syncing ConfigMap %q, err: %w", key, err))
    		c.queue.AddRateLimited(key)
    		return true
    	}
    	c.queue.Forget(key)
    	return true
    }
    
    func (c *Controller) syncConfigMap() error {
    	obj, exists, err := c.configMapCache.GetByKey(queueKey)
    	if err != nil {
    		return err
    	}
    
    	now := c.clock.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. gradle/dependency-management/capabilities.json

                "org.codehaus.groovy:groovy-all"
            ],
            "selected": "org.codehaus.groovy:groovy"
        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top