Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 826 for Unreserve (0.13 sec)

  1. src/runtime/tracebuf.go

    }
    
    // varintAt writes varint v at byte position pos in buf. This always
    // consumes traceBytesPerNumber bytes. This is intended for when the caller
    // needs to reserve space for a varint but can't populate it until later.
    // Use varintReserve to reserve this space.
    func (buf *traceBuf) varintAt(pos int, v uint64) {
    	for i := 0; i < traceBytesPerNumber; i++ {
    		if i < traceBytesPerNumber-1 {
    			buf.arr[pos] = 0x80 | byte(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

    # added to the graph fetch as controls.
    #
    # PRESERVE-LABEL: func @main
    # PRESERVE-SAME:  control_outputs = "Variable/Assign,AssignAdd"
    # PRESERVE-SAME:  inputs = ""
    # PRESERVE-SAME:  outputs = ""
    # PRESERVE-NOT:       "tf.Identity"
    # PRESERVE:           %[[VAR:.*]], %{{.*}} = tf_executor.island wraps "tf.VariableV2"
    # PRESERVE-DAG:       %{{.*}}, %[[ASSIGN_CTRL:.*]] = tf_executor.island wraps "tf.Assign"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

      // op. So live-out values no longer escape the region.
      ReplaceLiveOutExternalUses(live_outs, launch_op);
    
      // Ensure that users of the launch op's results appear after the launch op
      // in order to preserve the dominance property.
      TF::ReorderOpResultUses(launch_op);
    }
    
    std::string GetDevice(Operation* op) {
      auto device_attr = op->getAttrOfType<StringAttr>("device");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

         * Returns the filter that defines which files to preserve in the destination directory.
         *
         * @return the filter defining the files to preserve
         *
         * @see #getDestinationDir()
         */
        @Internal
        public PatternFilterable getPreserve() {
            return preserveInDestination;
        }
    
        /**
         * Configures the filter that defines which files to preserve in the destination directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_arm.s

    // tls_g stores the TLS slot allocated TlsAlloc().
    TEXT runtimeĀ·save_g(SB),NOSPLIT,$0
    	MRC	15, 0, R0, C13, C0, 2
    	ADD	$0xe10, R0
    	MOVW 	$runtimeĀ·tls_g(SB), R11
    	MOVW	(R11), R11
    	MOVW	g, R11<<2(R0)
    	MOVW	g, R0	// preserve R0 across call to setg<>
    	RET
    
    // load_g loads the g register from thread-local memory,
    // for use after calling externally compiled
    // ARM code that overwrote those registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramTextTest.kt

    
    class ProgramTextTest {
    
        @Test
        fun `preserve`() {
    
            val text = text("0123456789")
            assertThat(
                text.preserve(0..1),
                equalTo(text("01        "))
            )
    
            assertThat(
                text.preserve(0..1, 7..9),
                equalTo(text("01     789"))
            )
    
            assertThat(
                text.preserve(7..9, 0..1),
                equalTo(text("01     789"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/SyncSpec.java

         * Returns the filter that defines which files to preserve in the destination directory.
         *
         * @return the filter defining the files to preserve
         */
        @Internal
        PatternFilterable getPreserve();
    
        /**
         * Configures the filter that defines which files to preserve in the destination directory.
         *
         * @param action Action for configuring the preserve filter
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 09:09:21 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multi-output-feeds.pbtxt

    #
    # PRESERVE-LABEL: func @main
    # PRESERVE-SAME:  (%[[ARG_0:.*]]: tensor<f32>, %[[ARG_1:.*]]: tensor<f32>) -> (tensor<*xf32>, tensor<*xf32>)
    # PRESERVE-SAME:  control_outputs = ""
    # PRESERVE-SAME:  inputs = "z:1,z:2"
    # PRESERVE-SAME:  outputs = "z:0,a:0"
    # PRESERVE:           %{{.*}}, %[[ASSIGN_ADD_CTRL:.*]] = tf_executor.island wraps "tf.AssignAdd"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

      auto new_func_type = builder.getFunctionType(input_types, output_types);
      func.setType(new_func_type);
    }
    
    enum RemoveVolatileOpsType {
      // Remove all volatile quant-dequant ops.
      kPreserveNone,
      // Preserve volatile quant-dequants for input and output ops.
      kPreserveInputsAndOutputs,
    };
    
    // Remove the back-to-back quantize and dequantize ops with volatile attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Sync.xml

                <tr>
                    <td>preserve</td>
                    <td><literal>empty</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>preserve</td>
                </tr>
            </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 795 bytes
    - Viewed (0)
Back to top