Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 301 for destroys (0.8 sec)

  1. pkg/registry/rbac/role/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 true
    }
    
    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
    - 3.9K bytes
    - Viewed (0)
  2. pkg/registry/authentication/selfsubjectreview/rest.go

    	return false
    }
    
    // New creates a new selfsubjectreview object.
    func (r *REST) New() runtime.Object {
    	return &authenticationapi.SelfSubjectReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    // Create returns attributes of the subject making the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/registry/authorization/localsubjectaccessreview/rest.go

    func (r *REST) NamespaceScoped() bool {
    	return true
    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.LocalSubjectAccessReview{}
    }
    
    // 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 "localsubjectaccessreview"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/utils/dialect_detection_utils_test.cc

                           /*OperationName=*/"tf.Const");
      mlir::Operation* op = Operation::create(state);
    
      bool result = IsInBridgeAcceptableDialects(op);
    
      EXPECT_TRUE(result);
      op->destroy();
    }
    
    TEST_F(SharedUtilsTest, IsInFunctionalDialectFails) {
      MLIRContext context;
      context.loadDialect<ChloDialect>();
      OpBuilder opBuilder(&context);
      OperationState state(UnknownLoc::get(opBuilder.getContext()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 20:33:37 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNodeAccess.java

            this.ordinalGroups = ordinalGroups;
        }
    
        void addDestroyerNode(OrdinalGroup ordinal, LocalTaskNode destroyer, Consumer<Node> ordinalNodeConsumer) {
            // Create (or get) a destroyer ordinal node that depends on the output locations of this task node
            ordinal.getDestroyerLocationsNode().addDependenciesFrom(destroyer);
    
            // Depend on any previous producer ordinal nodes (i.e. any producer ordinal nodes with a lower ordinal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. pkg/registry/apiserverinternal/storageversion/storage/storage.go

    }
    
    // New creates a new StorageVersion object.
    func (r *StatusREST) New() runtime.Object {
    	return &apiserverinternal.StorageVersion{}
    }
    
    // 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. pkg/registry/storagemigration/storagemigration/storage/storage.go

    }
    
    // New creates a new StorageVersion object.
    func (r *StatusREST) New() runtime.Object {
    	return &svmapi.StorageVersionMigration{}
    }
    
    // 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 Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/registry/core/replicationcontroller/storage/storage.go

    	store *genericregistry.Store
    }
    
    func (r *StatusREST) New() runtime.Object {
    	return &api.ReplicationController{}
    }
    
    // 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
    - 12K bytes
    - Viewed (0)
  9. src/internal/poll/fd_plan9.go

    	isFile bool
    }
    
    // We need this to close out a file descriptor when it is unlocked,
    // but the real implementation has to live in the net package because
    // it uses os.File's.
    func (fd *FD) destroy() error {
    	if fd.Destroy != nil {
    		fd.Destroy()
    	}
    	return nil
    }
    
    // Close handles the locking for closing an FD. The real operation
    // is in the net package.
    func (fd *FD) Close() error {
    	if !fd.fdmu.increfAndClose() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/registry/apps/daemonset/storage/storage.go

    }
    
    // New creates a new DaemonSet object.
    func (r *StatusREST) New() runtime.Object {
    	return &apps.DaemonSet{}
    }
    
    // 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)
Back to top