Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 301 for destroys (0.29 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                if (logger.isDebugEnabled()) {
                    logger.debug("container was destroyed.");
                }
                return;
            } catch (final Exception e) {
                if (!ComponentUtil.available()) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("container was destroyed.");
                    }
                    return;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/internal/poll/fd_wasip1.go

    		s.RefCount = 1
    		s.RefCountPtr = &s.RefCount
    	}
    }
    
    func (s *SysFile) ref() SysFile {
    	atomic.AddInt32(s.RefCountPtr, +1)
    	return SysFile{RefCountPtr: s.RefCountPtr}
    }
    
    func (s *SysFile) destroy(fd int) error {
    	if s.RefCountPtr != nil && atomic.AddInt32(s.RefCountPtr, -1) > 0 {
    		return nil
    	}
    
    	// We don't use ignoringEINTR here because POSIX does not define
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/registry/core/resourcequota/storage/storage.go

    }
    
    // New creates a new ResourceQuota object.
    func (r *StatusREST) New() runtime.Object {
    	return &api.ResourceQuota{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. pkg/registry/core/persistentvolume/storage/storage.go

    }
    
    // New creates a new PersistentVolume object.
    func (r *StatusREST) New() runtime.Object {
    	return &api.PersistentVolume{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/prioritylevelconfiguration/storage/storage.go

    func (r *StatusREST) New() runtime.Object {
    	return &flowcontrol.PriorityLevelConfiguration{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:11:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. pkg/registry/networking/ingress/storage/storage.go

    }
    
    // New creates an instance of the StatusREST object
    func (r *StatusREST) New() runtime.Object {
    	return &networking.Ingress{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  7. src/net/fd_plan9.go

    	ret := &netFD{
    		net:    net,
    		n:      name,
    		dir:    netdir + "/" + net + "/" + name,
    		listen: listen,
    		ctl:    ctl, data: data,
    		laddr: laddr,
    		raddr: raddr,
    	}
    	ret.pfd.Destroy = ret.destroy
    	return ret, nil
    }
    
    func (fd *netFD) init() error {
    	// stub for future fd.pd.Init(fd)
    	return nil
    }
    
    func (fd *netFD) name() string {
    	var ls, rs string
    	if fd.laddr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 04 16:01:50 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/rest/log.go

    func (r *LogREST) New() runtime.Object {
    	// TODO - return a resource that represents a log
    	return &api.Pod{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *LogREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // ProducesMIMETypes returns a list of the MIME types the specified HTTP verb (GET, POST, DELETE,
    // PATCH) can respond with.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage.go

    func (r *StatusREST) New() runtime.Object {
    	return &admissionregistration.ValidatingAdmissionPolicy{}
    }
    
    // Destroy disposes the store object. For the StatusREST, this is a no-op.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    // New creates a new PersistentVolumeClaim object.
    func (r *StatusREST) New() runtime.Object {
    	return &api.PersistentVolumeClaim{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *StatusREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top