Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,053 for 10$ (0.08 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

      public void testGetSet() {
        AtomicDouble at = new AtomicDouble(1.0);
        assertBitEquals(1.0, at.get());
        for (double x : VALUES) {
          at.set(x);
          assertBitEquals(x, at.get());
        }
      }
    
      /** get returns the last value lazySet in same thread */
      public void testGetLazySet() {
        AtomicDouble at = new AtomicDouble(1.0);
        assertBitEquals(1.0, at.get());
        for (double x : VALUES) {
          at.lazySet(x);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    #         |
    #         + ------------- requireincompatible v0.1.0 ---- incompatible v2.0.0+incompatible
    #
    # The Go 1.17 module graph is the same except that the dependencies of
    # requireincompatible are pruned out (because the module that requires
    # it — lazy v0.1.0specifies 'go 1.17', and it is not otherwise relevant to
    # the main module).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            isTransformed("lib1.jar", "lib1.jar.hash")
            isTransformed("lib2.jar", "lib2.jar.hash")
            isTransformed("lib3.jar", "lib3.jar.hash")
            isTransformed("lib4-1.0.jar", "lib4-1.0.jar.hash")
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files 1: [lib1.jar.size, lib2.jar.size, lib3.jar.size, lib4-1.0.jar.size]") == 2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    // as under Go 1.16, but under 1.16 its (implicit) external test dependencies
    // are higher.
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/requireincompatible v0.1.0 => ./requireincompatible
    )
    
    require example.net/lazy v0.1.0
    -- m.go --
    package m
    
    import _ "example.net/lazy"
    -- lazy/go.mod --
    // Module lazy requires example.com/retract/incompatible v1.0.0.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            lib.file.exists()
            lib.file.path.endsWith('coolLib-1.0.jar')
    
            lib.source.exists()
            lib.source.path.endsWith('coolLib-1.0-sources.jar')
    
            lib.javadoc.exists()
            lib.javadoc.path.endsWith('coolLib-1.0-javadoc.jar')
    
            lib.scope.scope == 'TEST'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	go func() {
    		defer wg.Done()
    		for {
    			select {
    			case <-stopChan:
    				return
    			default:
    			}
    
    			time.Sleep(10 * time.Millisecond)
    
    			updateCRD()
    		}
    	}()
    
    	// Set up 10 loops creating and reading custom resources
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func(i int) {
    			defer wg.Done()
    			noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, fmt.Sprintf("foo-%d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    						{
    							Rule:    "size(self.__namespace__[0]) == 10",
    							Message: "size of first element in nestedObj should be equal to 10",
    						},
    						{
    							Rule: "self.__if__ == 10",
    						},
    						{
    							Rule: "self.self == 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    				noError(),
    				noError(),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/builtins0.go

    	var _ complex128 = complex(f64, f64)
    
    	// untyped constants
    	const _ int = complex(1, 0)
    	const _ float32 = complex(1, 0)
    	const _ complex64 = complex(1, 0)
    	const _ complex128 = complex(1, 0)
    	const _ = complex(0i, 0i)
    	const _ = complex(0i, 0)
    	const _ int = 1.0 + complex(1, 0i)
    
    	const _ int = complex /* ERROR "int" */ (1.1, 0)
    	const _ float32 = complex /* ERROR "float32" */ (1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/lib/output.json

                "uid": "-- Mixed --"
             },
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "scaleDistribution": {
                         "log": 10,
                         "type": "log"
                      },
                      "showPoints": "never"
                   },
                   "unit": "s"
                }
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

                        url '${mavenRepo.uri}'
                    }
                }
                dependencies {
                    implementation 'org.example:lib:1.0'
                    implementation 'org.example:does not exist:1.0'
                }
            """
        }
    
        @TargetGradleVersion("=6.6")
        def "Older Gradle versions mark all dependencies as resolved"() {
            when:
            def project = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top