Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 454 for dotV (0.07 sec)

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

    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    ! go build nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

        <developer>
          <id>sanders</id>
          <name>Scott Sanders</name>
          <email>sanders at apache dot org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
          <id>rdonkin</id>
          <name>Robert Burrell Donkin</name>
          <email>rdonkin at apache dot org</email>
          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_int4.mlir

      // CHECK: %[[dot:.*]] = stablehlo.dot %[[dq2]], %[[dq1]]
      %1 = stablehlo.dot %0, %cst : (tensor<?x3xf32>, tensor<3x2xf32>) -> tensor<?x2xf32>
      // CHECK: %[[q3:.*]] = "quantfork.qcast"(%[[dot]])
      // CHECK-SAME: quant.uniform<i4:f32, 0.61633392969767253:-2>>
      // CHECK: %[[dq3:.*]] = "quantfork.dcast"(%[[q3]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreter.kt

                (symbol("id") * parenString + kotlinPluginId)
            }
    
            val dot by debug {
                wsOrNewLine() * token(DOT)
            }
    
            val version by debug {
                symbol("version")
            }
    
            val apply by debug {
                symbol("apply")
            }
    
            val dotVersion by debug {
                dot * version * parenString
            }
    
            val dotApply by debug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/restore_function_name.mlir

        %0 = stablehlo.dot_general %arg0, %arg1, contracting_dims = [1] x [0] : (tensor<1x4xf32>, tensor<4x3xf32>) -> tensor<1x3xf32>
        return %0 : tensor<1x3xf32>
        // CHECK: %[[DOT:.+]] = stablehlo.dot_general %[[ARG2]], %[[ARG3]]
        // CHECK: return %[[DOT]]
      }
    }
    
    // -----
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 1646 : i32}, tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

        val result = Buffer()
    
        while (pos < limit) {
          var dot = string.indexOf('.', startIndex = pos)
          if (dot == -1) dot = limit
    
          if (!encodeLabel(string, pos, dot, result)) {
            // If we couldn't encode the label, give up.
            return null
          }
    
          if (dot < limit) {
            result.writeByte('.'.code)
            pos = dot + 1
          } else {
            break
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/gover/mod.go

    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsLang(FromToolchain(vers))
    		}
    		return IsLang(vers)
    	}
    	// Semver
    	dots := 0
    	for i := 0; i < len(vers); i++ {
    		switch vers[i] {
    		case '-', '+':
    			return false
    		case '.':
    			dots++
    			if dots >= 2 {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_bad_domain.txt

    ! go get appengine
    stderr '^go: malformed module path "appengine": missing dot in first path element$'
    ! go get x/y.z
    stderr 'malformed module path "x/y.z": missing dot in first path element'
    
    
    # 'go list -m' should report errors about module names, never GOROOT.
    ! go list -m -versions appengine
    stderr 'malformed module path "appengine": missing dot in first path element'
    ! go list -m -versions x/y.z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize.mlir

      // CHECK: %[[dot:.*]] = stablehlo.dot %[[dq2]], %[[dq1]]
      %1 = stablehlo.dot %0, %cst : (tensor<?x3xf32>, tensor<3x2xf32>) -> tensor<?x2xf32>
      // CHECK: %[[q3:.*]] = "quantfork.qcast"(%[[dot]])
      // CHECK-SAME: quant.uniform<i8:f32, 0.036254937041039562:-28>>
      // CHECK: %[[dq3:.*]] = "quantfork.dcast"(%[[q3]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 19:52:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/gradle.properties

    # tag::gradle-properties[]
    gradlePropertiesProp=gradlePropertiesValue
    gradleProperties.with.dots=gradlePropertiesDottedValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 152 bytes
    - Viewed (0)
Back to top