Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Constraint (0.21 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            endorseFrom2.targetComponent.nodes[0].ownStrictVersionConstraints != endorsedStrictVersions
        }
    
        def "uses empty strict version constraints object if there are no ancestor constraints"() {
            when:
            def edge = edge(root)
            def childNode = edge.targetComponent.nodes[0]
            collectOwnStrictVersions(root, [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                    )
                )
    
                dependencies {
                    implementation("org:foo:1.0") {
                       because 'version 1.0 is tested'
                    }
                    constraints {
                        implementation("org:bar:2.0") {
                            because 'because 2.0 is cool'
                        }
                    }
                }
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

             * This is not for a lifetime: a component can later be evicted through conflict resolution,
             * or another compatible component can be chosen instead if more constraints arise.
             */
            Selected(true),
    
            /**
             * An evicted component has been evicted and will never, ever be chosen starting from the moment it is evicted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. subprojects/distributions-dependencies/build.gradle.kts

    val jettyVersion = "9.4.36.v20210114"
    val sshdVersion = "2.12.1"
    
    // For the junit-bom
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform("org.junit:junit-bom:${junit5Version}!!"))
    
        constraints {
            api(libs.ansiControlSequenceUtil) { version { strictly("0.3") }}
            api(libs.ant)                   { version { strictly(antVersion) }}
            api(libs.antLauncher)           { version { strictly(antVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/qos_container_manager_linux.go

    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	// how often the qos cgroup manager will perform periodic update
    	// of the qos level cgroup resource constraints
    	periodicQOSCgroupUpdateInterval = 1 * time.Minute
    )
    
    type QOSContainerManager interface {
    	Start(func() v1.ResourceList, ActivePodsFunc) error
    	GetQOSContainersInfo() QOSContainersInfo
    	UpdateCgroups() error
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            DefaultDependencyHandler              | DependencyHandler              | "project.dependencies"
            DefaultDependencyConstraintHandler    | DependencyConstraintHandler    | "project.dependencies.constraints"
            DefaultComponentMetadataHandler       | ComponentMetadataHandler       | "project.dependencies.components"
            DefaultComponentModuleMetadataHandler | ComponentModuleMetadataHandler | "project.dependencies.modules"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. pkg/kube/util.go

    		// * Cluster.Server (and ProxyURL). This allows the user to send requests to arbitrary URLs, enabling potential SSRF attacks.
    		//   However, we don't actually know what valid URLs are, so we cannot reasonably constrain this. Instead,
    		//   we try to limit what confidential information could be exfiltrated (from AuthInfo). Additionally, the user cannot control
    		//   the paths we send requests to, limiting potential attack scope.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/os/exec/exec_test.go

    		// test that checks for leaked descriptors, the check can
    		// become confused and report a spurious leaked descriptor.
    		// (See issue #42431 for more detailed analysis.)
    		//
    		// Attempt to constrain the use of additional threads in the
    		// child process to make this test less flaky:
    		c.Env = append(os.Environ(), "GOMAXPROCS=1")
    	}
    	err = c.Run()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top