Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for destroys (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def projectB = project(project, "b")
            Task destroyer = task("destroyer", project: projectB, type: AsyncWithDestroysFile, dependsOn: [dependency])
            _ * destroyer.destroysFile >> file("inputDir").file("inputSubdir").file("foo")
    
            when:
            addToGraph(destroyer)
            addToGraphAndPopulate(producer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

                      default_() {}
      explicit ThreadLocal(const T& value) : key_(CreateKey()),
                                             default_(value) {}
    
      ~ThreadLocal() {
        // Destroys the managed object for the current thread, if any.
        DeleteThreadLocalValue(pthread_getspecific(key_));
    
        // Releases resources associated with the key.  This will *not*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    button,
    select {
    	text-transform: none;
    }
    
    /** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
    button,
    html input[type="button"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    
    	for _, storage := range oldInfo.storages {
    		// destroy only the main storage. Those for the subresources share cacher and etcd clients.
    		storage.CustomResource.DestroyFunc()
    	}
    }
    
    // Destroy shuts down storage layer for all registered CRDs.
    // It should be called as a last step of the shutdown sequence.
    func (r *crdHandler) destroy() {
    	r.customStorageLock.Lock()
    	defer r.customStorageLock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	// GoSwitch and GoSwitchDestroy represent a trio of events:
    	// - Unblock of the goroutine to switch to.
    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	// Clear iptables created by ipvs Proxier.
    	encounteredError = cleanupIptablesLeftovers(ctx, ipt) || encounteredError
    	// Destroy ip sets created by ipvs Proxier.  We should call it after cleaning up
    	// iptables since we can NOT delete ip set which is still referenced by iptables.
    	for _, set := range ipsetInfo {
    		err = ipset.DestroySet(set.name)
    		if err != nil {
    			if !utilipset.IsNotFoundError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top