Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 385 for IsSame (0.1 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    // THE SOFTWARE.
    
    package ppc64
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p ppc64
    
    /*
     * powerpc 64
     */
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 /* number of general registers */
    	NFREG  = 32 /* number of floating point registers */
    )
    
    const (
    	/* RBasePPC64 = 4096 */
    	/* R0=4096 ... R31=4127 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/debug/buildinfo/buildinfo.go

    // not contain Go build information.
    //
    // errNotGoExe should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/quay/claircore
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname errNotGoExe
    var errNotGoExe = errors.New("not a Go executable")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        private static void validatePackageName(String packageName) {
            if (!isNullOrEmpty(packageName) && !SourceVersion.isName(packageName)) {
                throw new GradleException("Package name: '" + packageName + "' is not valid - it may contain invalid characters or reserved words.");
            }
        }
    
        @VisibleForTesting
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions.mlir

    // CHECK-SAME: f = @composite_conv2d_with_bias_and_relu6_fn_1}>
    // CHECK-SAME: {_tfl_quant_trait = "fully_quantizable"
    // CHECK: %[[PARTITIONEDCALL_1:.*]] = "tf.PartitionedCall"(%arg0, %arg1, %[[CONST_0]])
    // CHECK-SAME: f = @composite_conv2d_with_bias_and_relu_fn_1}
    // CHECK: %[[PARTITIONEDCALL_2:.*]] = "tf.PartitionedCall"(%arg0, %arg1, %[[CONST_0]])
    // CHECK-SAME: f = @composite_conv2d_with_bias_fn_1}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

      // CHECK-SAME: _XlaSharding = ""
      // CHECK-SAME: partition_dims = []
      // CHECK-DAG:  "tf.AssignVariableOp"([[ARG0]], [[OUTPUT]]#0)
      // CHECK-DAG:  "tf.AssignVariableOp"([[ARG1]], [[OUTPUT]]#1)
      "tf.AssignVariableOp"(%0, %2) : (tensor<!tf_type.resource<tensor<i32>>>, tensor<i32>) -> ()
      func.return
    }
    
    // CHECK-LABEL: func @read_write_packed_resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/runtime/string.go

    // it is not nil if the result does not escape.
    //
    // slicebytetostring should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname slicebytetostring
    func slicebytetostring(buf *tmpBuf, ptr *byte, n int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-collective.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics -xla-legalize-tf-collective -xla-legalize-tf %s | FileCheck %s
    
    
    // CHECK: module attributes
    // CHECK-SAME{LITERAL}: tf2xla.collective_info.group_key = 0
    // CHECK-SAME{LITERAL}: tf2xla.collective_info.group_size = 2
    // CHECK-LABEL: func @all_reduce_cross_replica
    func.func @all_reduce_cross_replica(%input: tensor<f32>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

      %0 = "tf_device.cluster"() ({
        // CHECK: "tf.Const"() <{value = dense<1> : tensor<i32>}>
        // CHECK-NOT: _xla_outside_compilation
        // CHECK: "tf.Const"
        // CHECK-SAME: _xla_outside_compilation
        // CHECK-SAME: tf_type.string
        // CHECK: "tf.Identity"
        // CHECK-NOT: _xla_outside_compilation
        %1 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    But it's still part of the same **FastAPI** application/web API (it's part of the same "Python Package").
    
    You can create the *path operations* for that module using `APIRouter`.
    
    ### Import `APIRouter`
    
    You import it and create an "instance" the same way you would with the class `FastAPI`:
    
    ```Python hl_lines="1  3" title="app/routers/users.py"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK-SAME: (tensor<2xi32>) -> tensor<1xi32>
        // CHECK: %[[DIM0:.*]] = mhlo.reshape %[[SLICE0]] : (tensor<1xi32>) -> tensor<i32>
    
        // CHECK: %[[SLICE1:.*]] = "mhlo.slice"(%[[ARG2]])
        // CHECK-DAG-SAME: start_indices = dense<1> : tensor<1xi64>
        // CHECK-DAG-SAME: limit_indices = dense<2> : tensor<1xi64>
        // CHECK-DAG-SAME: strides = dense<1> : tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top