Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 268 for destroys (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            }
            final String commandDestroyTimeoutStr = fessConfig.getSystemProperty("thumbnail.command.destroy.timeout");
            if (commandDestroyTimeoutStr != null) {
                commandDestroyTimeout = Long.valueOf(commandDestroyTimeoutStr);
            }
        }
    
        @Override
        public void destroy() {
            destoryTimer.cancel();
            destoryTimer = null;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset.go

    	}
    	return nil
    }
    
    // DestroySet is used to destroy a named set.
    func (runner *runner) DestroySet(set string) error {
    	if out, err := runner.exec.Command(IPSetCmd, "destroy", set).CombinedOutput(); err != nil {
    		return fmt.Errorf("error destroying set %s, error: %v(%s)", set, err, out)
    	}
    	return nil
    }
    
    // DestroyAllSets is used to destroy all sets.
    func (runner *runner) DestroyAllSets() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun_test.go

    	sc.Codec = apitesting.TestStorageCodec(codecs, examplev1.SchemeGroupVersion)
    	s, destroy, err := factory.Create(*sc.ForResource(schema.GroupResource{Resource: "pods"}), nil, nil, "")
    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	return DryRunnableStorage{Storage: s, Codec: sc.Codec}, func() {
    		destroy()
    		server.Terminate(t)
    	}
    }
    
    func UnstructuredOrDie(j string) *unstructured.Unstructured {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top