Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 368 for 1e10 (0.04 sec)

  1. src/internal/types/testdata/fixedbugs/issue51610.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _[P int | float64 | complex128]() {
    	_ = map[P]int{1: 1, 1.0 /* ERROR "duplicate key 1" */ : 2, 1 /* ERROR "duplicate key (1 + 0i)" */ + 0i: 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 322 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/toolingApi/eclipse/groovy/build.gradle

    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 419 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/parent-version-range-local-child-revision-expression/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <version>${revision}</version>
      <packaging>pom</packaging>
      <properties>
        <revision>1.0-SNAPSHOT</revision>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 01 13:35:07 UTC 2022
    - 361 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>1</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 21:46:52 UTC 2017
    - 348 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/tooling/build.gradle

    dependencies {
        implementation 'org.gradle.sample:plugin:1.0'
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 494 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/toolingApi/idea/groovy/build.gradle

    }
    
    dependencies {
        api "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 416 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/toolingApi/model/groovy/build.gradle

    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:${toolingApiVersion}"
        // Need an SLF4J implementation at runtime
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 427 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/fused_kernel_matcher.mlir

      // CHECK: %[[VAL_1:.*]] = "tf.Identity"(%[[VAL_0]]) : (tensor<*xf32>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/NumberUtil.java

            }
            if (total == 0) {
                return 0;
            }
            float out = fraction * 100.0f / total;
            return (int) out;
        }
    
        /**
         * Formats bytes, e.g. 1010 -&gt; 1010 B, -1025 -&gt; -1 KiB, 1127 -&gt; 1.1 KiB
         */
        public static String formatBytes(@Nullable Long bytes) {
            if (bytes == null) {
                return "unknown size";
            } else if (bytes < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/maven-publish/customize-identity/kotlin/library/build.gradle.kts

        repositories {
            maven {
                url = uri("${rootProject.buildDir}/repo") // change to point to your repo, e.g. http://my.org/repo
            }
        }
    }
    
    dependencies {
        api("org.slf4j:slf4j-api:1.7.10")
    }
    
    // tag::customize-identity[]
    publishing {
        publications {
            create<MavenPublication>("maven") {
                groupId = "org.gradle.sample"
                artifactId = "library"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 626 bytes
    - Viewed (0)
Back to top