Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 301 for destroys (0.15 sec)

  1. pkg/registry/batch/cronjob/storage/storage.go

    }
    
    // New creates a new CronJob object.
    func (r *StatusREST) New() runtime.Object {
    	return &batch.CronJob{}
    }
    
    // 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)
  2. pkg/registry/rbac/clusterrolebinding/policybased/storage.go

    	return &Storage{s, authorizer, ruleResolver}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *Storage) Destroy() {
    	r.StandardStorage.Destroy()
    }
    
    func (r *Storage) NamespaceScoped() bool {
    	return false
    }
    
    func (r *Storage) StorageVersion() runtime.GroupVersioner {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. pkg/registry/authentication/tokenreview/storage.go

    }
    
    func (r *REST) NamespaceScoped() bool {
    	return false
    }
    
    func (r *REST) New() runtime.Object {
    	return &authentication.TokenReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "tokenreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/net/interface_bsd_test.go

    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "create"},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "destroy"},
    	})
    	return nil
    }
    
    func (ti *testInterface) setPointToPoint(suffix int) error {
    	ti.name = fmt.Sprintf("gif%d", suffix)
    	xname, err := exec.LookPath("ifconfig")
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SecuredHandlerCollection.groovy

        @Override
        void setServer(Server server) {
            delegate.server = server
        }
    
        @Override
        Server getServer() {
            delegate.server
        }
    
        @Override
        void destroy() {
            delegate.destroy()
        }
    
        void requireAuthentication(String path, String username, String password) {
            if (realm != null) {
                assert realm.username == username
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top