Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,613 for cleaned (0.1 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device.cc

      }
      result.emplace(std::move(result_content));
      return result;
    }
    
    // Used as an argument to TFE_NewCustomDeviceTensorHandle, indicating how
    // ParallelTensors wrapped in TFE_TensorHandles should be cleaned up once their
    // reference counts drop to zero.
    void ParallelTensorDeallocator(void* data) {
      delete reinterpret_cast<ParallelTensor*>(data);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            file("build/classes/java/main/A.txt").exists()
    
            when:
            a.delete()
            succeeds "compileJava"
    
            then: "they all get cleaned"
            outputs.deletedClasses("A")
            !file("build/generated/sources/annotationProcessor/java/main/A.txt").exists()
            !file("build/generated/sources/headers/java/main/A.txt").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Transport.java

                }
                catch ( IOException ioe0 ) {
                    this.state = 6;
                    ioe = ioe0;
                }
            case 4: /* failed to connect - reset the transport */
                // thread is cleaned up by connect routine, joining it here causes a deadlock
                this.thread = null;
                this.state = 6;
                break;
            default:
                log.error("Invalid state: " + this.state);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    $ gradle -q taskX
    include::{snippetsPath}/tasks/finalizersWithFailure/tests-groovy/taskFinalizersWithFailureGroovy.out[]
    ----
    ====
    
    Finalizer tasks are useful when the build creates a resource that must be cleaned up, regardless of whether the build fails or succeeds.
    An example of such a resource is a web container that is started before an integration test task and must be shut down, even if some tests fail.
    
    [[sec:skipping_tasks]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

     *
     * <p>Provides {@link Executor} and {@link ExecutorFactory} implementations for use during the test. These provide real concurrency.
     * The test threads are cleaned up at the end of the test, and any exceptions thrown by those tests are propagated.
     *
     * <p>Provides some fixtures for testing:</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            inputDir.forceDeleteDir()
            run("copy")
            then:
            executedAndNotSkipped(":copy")
            outputDir.assertIsEmptyDir()
        }
    
        def "outputs are cleaned out on rebuild (output type: #type)"() {
            file("buildSrc").deleteDir()
            buildFile.text = """
                abstract class MyCopy extends DefaultTask {
                    @Incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/network.go

    		timer: time.AfterFunc(ttl, n.refreshAndNotify(name)),
    	}
    
    	return addrs
    }
    
    // refreshAndNotify is triggered via time.AfterFunc and will recursively schedule itself that way until timer is cleaned
    // up via cleanupWatches.
    func (n *networkGatewayNameCache) refreshAndNotify(name string) func() {
    	return func() {
    		log.Debugf("network gateways: refreshing DNS for %s", name)
    		n.Lock()
    		old := n.cache[name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/search/search.go

    	}
    
    	if m.IsLiteral() {
    		m.Dirs = []string{m.pattern}
    		return
    	}
    
    	// Clean the path and create a matching predicate.
    	// filepath.Clean removes "./" prefixes (and ".\" on Windows). We need to
    	// preserve these, since they are meaningful in MatchPattern and in
    	// returned import paths.
    	cleanPattern := filepath.Clean(m.pattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter.go

    			//   1. Since volume can not be used by the pod because of invalid permissions, we must return error
    			//   2. Since mount is successful, we must record volume as mounted in uncertain state, so it can be
    			//      cleaned up.
    			return volumetypes.NewUncertainProgressError(fmt.Sprintf("applyFSGroup failed for vol %s: %v", c.volumeID, err))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
Back to top