Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 302 for 1e20 (0.05 sec)

  1. hack/tools/go.work

    // This is a hack, but it prevents go from climbing further and trying to
    // reconcile the various deps across the "real" modules and this one.
    
    go 1.22.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 162 bytes
    - Viewed (0)
  2. test/fixedbugs/issue4785.go

    // license that can be found in the LICENSE file.
    
    // issue 4785: used to fail to compile
    
    package main
    
    func t(x, y interface{}) interface{} {
    	return x.(float64) > y.(float64)
    }
    
    func main() {
    	v := t(1.0, 2.0)
    	if v != false {
    		panic("bad comparison")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 378 bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo2/fess-ds-atlassian/maven-metadata.xml

    <metadata modelVersion="1.1.0">
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-ds-atlassian</artifactId>
      <versioning>
        <latest>13.2.1-SNAPSHOT</latest>
        <release></release>
        <versions>
          <version>12.2.0-SNAPSHOT</version>
          <version>12.5.0-SNAPSHOT</version>
          <version>12.5.1-SNAPSHOT</version>
          <version>12.6.1-SNAPSHOT</version>
          <version>13.0.1-SNAPSHOT</version>
          <version>13.1.1-SNAPSHOT</version>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 15 02:16:52 UTC 2019
    - 623 bytes
    - Viewed (0)
  4. manifests/charts/gateway/files/profile-compatibility-version-1.20.yaml

    Leonardo Sarra <******@****.***> 1717533426 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 753 bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/files/profile-compatibility-version-1.20.yaml

    Leonardo Sarra <******@****.***> 1717533426 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 753 bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http/StatusLineTest.kt

        assertInvalid("HTTP/101 200 OK")
        assertInvalid("HTTP/1.1_200 OK")
      }
    
      @Test
      fun nonThreeDigitCode() {
        assertInvalid("HTTP/1.1  OK")
        assertInvalid("HTTP/1.1 2 OK")
        assertInvalid("HTTP/1.1 20 OK")
        assertInvalid("HTTP/1.1 2000 OK")
        assertInvalid("HTTP/1.1 two OK")
        assertInvalid("HTTP/1.1 2")
        assertInvalid("HTTP/1.1 2000")
        assertInvalid("HTTP/1.1 two")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties

    #Generated file, please do not edit - Version values used in build-init templates
    commons-math=3.6.1
    commons-text=1.12.0
    groovy=3.0.21
    guava=33.2.1-jre
    junit-jupiter=5.10.2
    junit=4.13.2
    kotlin=2.0.0
    scala-library=2.13.14
    scala-xml=1.2.0
    scala=2.13
    scalatest=3.2.18
    scalatestplus-junit=3.2.2.0
    slf4j=2.0.13
    spock=2.2-groovy-3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 340 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

                }
                configurations { compile }
                dependencies {
                    compile ':name1:1.0'
                    compile ':name2:[1.0, 2.0]'
                    compile ':name3:1.0-SNAPSHOT'
                    compile 'group1::1.0'
                    compile 'group2::[1.0, 2.0]'
                    compile 'group3::1.0-SNAPSHOT'
                    compile 'group:name'
                }
                task retrieve(type: Sync) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. src/test/resources/plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata modelVersion="1.1.0">
      <groupId>org.codelibs.fess</groupId>
      <artifactId>fess-ds-atlassian</artifactId>
      <version>12.2.0-SNAPSHOT</version>
      <versioning>
        <snapshot>
          <timestamp>20180814.210714</timestamp>
          <buildNumber>10</buildNumber>
        </snapshot>
        <lastUpdated>20180814210714</lastUpdated>
        <snapshotVersions>
          <snapshotVersion>
            <extension>jar</extension>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 15 02:16:52 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue15277.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    type big [10 << 20]byte
    
    func f(x *big, start int64) {
    	if delta := inuse() - start; delta < 9<<20 {
    		println("after alloc: expected delta at least 9MB, got: ", delta)
    	}
    	runtime.KeepAlive(x)
    	x = nil
    	if delta := inuse() - start; delta > 1<<20 {
    		println("after drop: expected delta below 1MB, got: ", delta)
    	}
    	x = new(big)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 851 bytes
    - Viewed (0)
Back to top