Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 277 for destroyFn (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top