Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 274 for destroyer (0.18 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/testing/internal/util/GradlewRunner.java

                Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            finalProcess.destroy();
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                    }
                }));
                forwardAsync(process.getInputStream(), System.out);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

        parent()->DeallocateStream(this);
        Destroy();
      }
    
      absl::Status Create() {
        tensorflow::TF_StatusPtr c_status(TF_NewStatus());
        stream_executor_->create_stream(device_, &stream_handle_, c_status.get());
        absl::Status s = tensorflow::StatusFromTF_Status(c_status.get());
        return s;
      }
    
      void Destroy() {
        if (stream_handle_ != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pkg/registry/apps/deployment/storage/storage.go

    }
    
    // New returns empty Deployment object.
    func (r *StatusREST) New() runtime.Object {
    	return &apps.Deployment{}
    }
    
    // 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: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. pkg/registry/apps/replicaset/storage/storage.go

    }
    
    // New returns empty ReplicaSet object.
    func (r *StatusREST) New() runtime.Object {
    	return &apps.ReplicaSet{}
    }
    
    // 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: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/flowschema/storage/storage.go

    }
    
    // New creates a new flow schema object.
    func (r *StatusREST) New() runtime.Object {
    	return &flowcontrol.FlowSchema{}
    }
    
    // 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.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/proxy/ipvs/ipset/testing/fake.go

    	}
    
    	// delete all entry elements
    	for true {
    		if _, has := f.Entries[set].PopAny(); has {
    			continue
    		}
    		break
    	}
    	return nil
    }
    
    // DestroySet is part of interface.  It deletes both the entries and the set itself.
    func (f *FakeIPSet) DestroySet(set string) error {
    	delete(f.Sets, set)
    	delete(f.Entries, set)
    	return nil
    }
    
    // DestroyAllSets is part of interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top