Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 301 for destroys (0.24 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java

            protected T instance;
    
            protected Consumer<T> destroyer;
    
            protected ComponentHolder(final T instance, final Consumer<T> destroyer) {
                this.instance = instance;
                this.destroyer = destroyer;
            }
    
            protected T get() {
                return instance;
            }
    
            protected void destroy() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    			if functionName == "Destroy" {
    				destroyCount = destroyCount + 1
    			}
    		}
    		return destroyCount >= 1, nil
    	})
    
    	assert.NoError(t, err, "wait should not return error")
    	// housekeeping can get called multiple times. The cgroup Destroy() is
    	// done within a goroutine and can get called multiple times, so the
    	// Destroy() count in not deterministic on the actual number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/controlplane/reconcilers/lease.go

    	UpdateLease(ip string) error
    
    	// RemoveLease removes a master's lease
    	RemoveLease(ip string) error
    
    	// Destroy cleans up everything on shutdown.
    	Destroy()
    }
    
    type storageLeases struct {
    	storage   storage.Interface
    	destroyFn func()
    	baseKey   string
    	leaseTime time.Duration
    }
    
    var _ Leases = &storageLeases{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

     * ordinality even if the destroyers are delayed waiting on dependencies (and vice versa).
     */
    public class OrdinalNode extends Node implements SelfExecutingNode {
        public enum Type {DESTROYER, PRODUCER}
    
        private final Type type;
        private final OrdinalGroup ordinal;
    
        public OrdinalNode(Type type, OrdinalGroup ordinal) {
            this.type = type;
            this.ordinal = ordinal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    	leaseStorage, destroyFn, err := storagefactory.Create(*config, nil, nil, "")
    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory: %v", err)
    	}
    	var once sync.Once
    	return &peerEndpointLeaseReconciler{
    		serverLeases: &peerEndpointLeases{
    			storage:   leaseStorage,
    			destroyFn: func() { once.Do(destroyFn) },
    			baseKey:   baseKey,
    			leaseTime: leaseTime,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/storage/storage.go

    }
    
    // Free implements allocator.Interface::Free
    func (e *Etcd) Free() int {
    	e.lock.Lock()
    	defer e.lock.Unlock()
    
    	return e.alloc.Free()
    }
    
    // Destroy implement allocator.Interface::Destroy
    func (e *Etcd) Destroy() {
    	e.destroyFn()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	}
    
    	// Destroy a given set
    	if err := fake.DestroySet(set.Name); err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if fake.Sets[set.Name] != nil {
    		t.Errorf("Unexpected set: %v", fake.Sets[set.Name])
    	}
    	if fake.Entries[set.Name] != nil {
    		t.Errorf("Unexpected entries: %v", fake.Entries[set.Name])
    	}
    
    	// Destroy all sets
    	if err := fake.DestroyAllSets(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    {\n      return toCheck;\n    }\n  }\n  return null;\n}\n","import isModifierEnabled from '../utils/isModifierEnabled';\nimport getSupportedPropertyName from '../utils/getSupportedPropertyName';\n\n/**\n * Destroys the popper.\n * @method\n * @memberof Popper\n */\nexport default function destroy() {\n  this.state.isDestroyed = true;\n\n  // touch DOM only if `applyStyle` modifier is enabled\n  if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n    this.popper.removeAttribute('x-placement');\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top