Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 764 for Unreserve (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/os/exec/env_test.go

    		{
    			in:   []string{"=a", "=b", "foo", "bar"},
    			want: []string{"=b", "foo", "bar"},
    		},
    		{
    			// #49886: preserve weird Windows keys with leading "=" signs.
    			noCase: true,
    			in:     []string{`=C:=C:\golang`, `=D:=D:\tmp`, `=D:=D:\`},
    			want:   []string{`=C:=C:\golang`, `=D:=D:\`},
    		},
    		{
    			// #52436: preserve invalid key-value entries (for now).
    			// (Maybe filter them out or error out on them at some point.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 01:23:16 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def 'sync is not up to date when the preserve filter is changed'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                preserved { file('some-preserved-file.txt') }
            }
    
            buildScript '''
                task sync(type: Sync) {
                    from 'source'
                    into 'dest'
                    preserve {
                        include 'preserved'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputApp.groovy

        private final multiply = new CppMultiply()
        private final main = new CppMain(greeter, sum)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply),
            preserve(main)
        ]
        final String expectedOutput = main.expectedOutput
        final String expectedAlternateOutput = main.expectedOutput
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top