Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 274 for destroyer (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

         */
        boolean hasDeclaredOutputs();
    
        /**
         * The files that represent the local state.
         */
        FileCollection getLocalStateFiles();
    
        /**
         * The files that are destroyed.
         */
        FileCollection getDestroyableFiles();
    
        /**
         * Validate the task type.
         */
        void validateType(TypeValidationContext validationContext);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

            @OutputFiles
            Set<File> outputFiles
            @OutputDirectory
            File outputDirectory
            @OutputDirectories
            Set<File> outputDirectories
            @Destroys
            Set<File> destroys
            @LocalState
            File someCache
            @Inject
            Object injectedService
            @Internal
            Object internal
            @ReplacedBy("inputString")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top