Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,075 for 10$ (0.02 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    stderr '^go: example\.net/indirect@v0\.1\.0 requires\n\texample\.net/ambiguous@v0\.1\.0: missing go\.sum entry for go\.mod file; to add it:\n\tgo mod download example\.net/ambiguous\n'
    
    
    -- go.mod --
    module example.com/m
    
    go 1.17
    
    replace example.net/indirect v0.1.0 => ./indirect
    
    require example.net/indirect v0.1.0
    
    require example.net/ambiguous/nested v0.1.0 // indirect
    -- all-m.txt --
    example.com/m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/reconfig_batch_op.mlir

      // CHECK-SAME: max_enqueued_batches = 10 : i64
      // CHECK-SAME: num_batch_threads = 2 : i64
      // CHECK-SAME: shared_name = "batch/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 17:38:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-deployment-syncs=10",
    	"--concurrent-horizontal-pod-autoscaler-syncs=10",
    	"--concurrent-statefulset-syncs=15",
    	"--concurrent-endpoint-syncs=10",
    	"--concurrent-ephemeralvolume-syncs=10",
    	"--concurrent-service-endpoint-syncs=10",
    	"--concurrent-gc-syncs=30",
    	"--concurrent-namespace-syncs=20",
    	"--concurrent-job-syncs=10",
    	"--concurrent-cron-job-syncs=10",
    	"--concurrent-replicaset-syncs=10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            failure.assertHasErrorOutput("""> Could not resolve all artifacts for configuration ':classpath'.
       > Could not resolve com.example:producer:1.0.
         Required by:
             project : > com.example.greeting:com.example.greeting.gradle.plugin:1.0
          > Plugin com.example:producer:1.0 requires at least Gradle 1000.0. This build uses Gradle $currentGradle.""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/number_generated_rules_test.go

    		svcType      v1.ServiceType
    	}{
    		{
    			name:         "Generate 10 Services with 10 Endpoints per Service and LoadBalancer Type",
    			services:     10,
    			epPerService: 10,
    			svcType:      v1.ServiceTypeLoadBalancer,
    		},
    		{
    			name:         "Generate 10 Services with 20 Endpoints per Service and NodePort Type",
    			services:     10,
    			epPerService: 20,
    			svcType:      v1.ServiceTypeNodePort,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    	return 1, 0
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *EndpointsList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            long _1000_bytes = 1000L;
            assertEquals("1.0 kB", format.formatProgress(_1000_bytes, -1L));
    
            long _1000_kilobytes = 1000L * 1000L;
            assertEquals("1.0 MB", format.formatProgress(_1000_kilobytes, -1L));
    
            long _1000_megabytes = 1000L * 1000L * 1000L;
            assertEquals("1.0 GB", format.formatProgress(_1000_megabytes, -1L));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                            params(quality)
                        })
                    }
                    conf 'org.test:module:1.0'
                }
            """
    
            when:
            repositoryInteractions {
                'org.test:module:1.0' {
                    expectGetMetadata()
                    if (fixApplied) {
                        expectGetArtifact()
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            def classpath = underTest.create([
                new File("app-cls-1.0.jar"), new File("app-mod-1.0.jar"), new File("impl-cls-1.0.jar"), new File("impl-mod-1.0.jar")
            ], [], framework, true)
    
            then:
            classpath.applicationClasspath == [new File("app-cls-1.0.jar"), new File("app-mod-1.0.jar"), new File("impl-cls-1.0.jar"), new File("impl-mod-1.0.jar")]
            classpath.applicationModulepath.isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top