Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 301 for destroys (0.2 sec)

  1. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage.go

    // New creates a new HorizontalPodAutoscaler object.
    func (r *StatusREST) New() runtime.Object {
    	return &autoscaling.HorizontalPodAutoscaler{}
    }
    
    // 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.6K bytes
    - Viewed (0)
  2. pkg/registry/rbac/clusterrole/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
    - 5.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/fake_pod_container_manager.go

    	m.Lock()
    	defer m.Unlock()
    	m.CalledFunctions = append(m.CalledFunctions, "GetPodContainerName")
    	return nil, ""
    }
    
    func (m *FakePodContainerManager) Destroy(name CgroupName) error {
    	m.Lock()
    	defer m.Unlock()
    	m.CalledFunctions = append(m.CalledFunctions, "Destroy")
    	for key, cgname := range m.Cgroups {
    		if reflect.DeepEqual(cgname, name) {
    			delete(m.Cgroups, key)
    			return nil
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. pkg/registry/core/componentstatus/rest.go

    	return &api.ComponentStatus{}
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (rs *REST) GetSingularName() string {
    	return "componentstatus"
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    func (rs *REST) NewList() runtime.Object {
    	return &api.ComponentStatusList{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/registry/rbac/rolebinding/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
    - 5.5K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/storage/storage.go

    }
    
    // New creates a new Job object.
    func (r *StatusREST) New() runtime.Object {
    	return &batch.Job{}
    }
    
    // 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
    - 6.1K bytes
    - Viewed (0)
  7. pkg/registry/apps/statefulset/storage/storage.go

    }
    
    // New returns empty StatefulSet object.
    func (r *StatusREST) New() runtime.Object {
    	return &apps.StatefulSet{}
    }
    
    // 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.7K bytes
    - Viewed (0)
  8. src/runtime/traceruntime.go

    	w.commit(traceEvGoUnblock, traceArg(gp.goid), gp.trace.nextSeq(tl.gen), tl.stack(skip))
    }
    
    // GoCoroswitch emits a GoSwitch event. If destroy is true, the calling goroutine
    // is simultaneously being destroyed.
    func (tl traceLocker) GoSwitch(nextg *g, destroy bool) {
    	// Emit a GoWaiting status if necessary for the unblocked goroutine.
    	w := tl.eventWriter(traceGoRunning, traceProcRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. pkg/registry/resource/resourceclaim/storage/storage.go

    }
    
    // New creates a new ResourceClaim object.
    func (r *StatusREST) New() runtime.Object {
    	return &resource.ResourceClaim{}
    }
    
    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 10:11:16 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

      mlir::OpBuilder builder(&ctx);
      auto module_op = builder.create<mlir::ModuleOp>(builder.getUnknownLoc());
      // Destroy by calling destroy() to avoid memory leak since it is allocated
      // with malloc().
      const absl::Cleanup module_op_cleanup = [module_op] { module_op->destroy(); };
    
      const mlir::LogicalResult result = pm.run(module_op);
      EXPECT_FALSE(failed(result));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top