Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,097 for 10$ (4.5 sec)

  1. pkg/controller/job/success_policy_test.go

    	}{
    		"JobSuccessPolicy is disabled": {
    			completions:      10,
    			succeededIndexes: orderedIntervals{{0, 0}},
    		},
    		"successPolicy is null": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    		},
    		"any rules are nothing": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestExecutionTest.groovy

            given:
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
            result.baseline("1.0").results << operation(totalTime: 100)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            repo.expectCloneSomething()
            assertResolvesTo("foo-1.0.jar", "bar-1.0.jar")
    
            repo.expectListVersions()
            assertResolvesTo("foo-1.0.jar", "bar-1.0.jar")
        }
    
        @ToBeFixedForConfigurationCache
        def "only resolves a single project of multi-project source dependency"() {
            mavenRepo.module("org.test", "bar", "1.0-SNAPSHOT").withNonUniqueSnapshots().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

            publishedFiles*.name.containsAll('my-artifact-1.0-SNAPSHOT.jar', 'my-artifact-1.0-SNAPSHOT.jar.sha1', 'my-artifact-1.0-SNAPSHOT.jar.md5', 'my-artifact-1.0-SNAPSHOT.pom', 'my-artifact-1.0-SNAPSHOT.pom.sha1', 'my-artifact-1.0-SNAPSHOT.pom.md5')
            !publishedFiles.find { it.name == 'maven-metadata.xml' }
            snapshotMavenFileModule.assertArtifactsPublished('my-artifact-1.0-SNAPSHOT.jar', 'my-artifact-1.0-SNAPSHOT.pom')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/plugin-notations.toml

    [plugins]
    simple = "org.example:1.0"
    without-version = { id = "org.example" }
    with-id = { id = "org.example", version = "1.1"}
    with-ref = { id = "org.example", version.ref = "ref"}
    with-rich1 = { id = "org.example", version = { prefer = "1.0" } }
    with-rich2 = { id = "org.example", version.prefer = "1.0" }
    with-rich3 = { id = "org.example", version.require = "1.0" }
    with-rich4 = { id = "org.example", version.strictly = "1.0" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 668 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestURI:           "http://server/apis/",
    			requestInfo:          nil,
    			maxSeats:             10,
    			initialSeatsExpected: 10,
    		},
    		{
    			name:       "request verb is not list",
    			requestURI: "http://server/apis/",
    			requestInfo: &apirequest.RequestInfo{
    				Verb: "get",
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            MavenHttpModule leaf1
            MavenHttpModule leaf2
            mavenHttpRepo.with {
                a = module('org', 'a', '1.0').dependsOn('org', 'leaf', '1.0').publish()
                b = module('org', 'b', '1.0').dependsOn('org', 'leaf', '2.0').publish()
                leaf1 = module('org', 'leaf', '1.0').publish()
                leaf2 = module('org', 'leaf', '2.0').publish()
            }
    
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

            dependencies.get(0).version == '1.0'
            dependencies.get(1).groupId == 'my-company'
            dependencies.get(1).artifactId == 'dep2'
            dependencies.get(1).type == null
            dependencies.get(1).version == '1.0'
        }
    
        def "Add single dependency"() {
            when:
            List dependencies = mavenLocalModule.dependsOn('my-company', 'dep1', '1.0', 'jar', 'compile', null).dependencies
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ParentPomsReadOnlyCacheDependencyResolutionTest.groovy

            given:
            def parent = mavenHttpRepo.module('org.readonly', 'parent', '1.0')
            def other = mavenHttpRepo.module("org.other", "other", "1.0")
                .parent("org.readonly", "parent", "1.0").publish()
            buildFile << """
                dependencies {
                    implementation 'org.other:other:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/decompose-hybrid-quantization.mlir

      func.return %2 : tensor<1x32x32x16x!quant.uniform<i8:f32, 1.0>>
    }
    
    // -----
    
    // CHECK-LABEL: @test_conv2d_qi16
    func.func @test_conv2d_qi16(%arg0: tensor<1x32x32x8x!quant.uniform<i16:f32, 1.0>>) -> tensor<1x32x32x16x!quant.uniform<i16:f32, 1.0>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top