Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 183 for squatting (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ShutdownParameters.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    /**
     * The parameters for shutting down a provider connection.
     *
     * <p>This is a marker interface. Instances are queried dynamically to see which parameters they support.
     *
     * @since 2.2-rc-1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 936 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

        interface BuildScanResult {
    
        }
    
        interface Listener {
            /**
             * Called after all user build logic has completed and the build outcome reported to the logging system. Also called prior to shutting down the build(-tree) scope services
             */
            BuildScanResult execute(BuildResult buildResult);
        }
    
        void notify(Listener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. cluster/gce/gci/shutdown.sh

    preemptible=$(curl "http://metadata.google.internal/computeMetadata/v1/instance/scheduling/preemptible" -H "Metadata-Flavor: Google")
    if [ "${preemptible}" == "TRUE" ]; then
        echo "Shutting down! Sleeping for a minute to let the node gracefully terminate"
        # https://cloud.google.com/compute/docs/instances/stopping-or-deleting-an-instance#delete_timeout
        sleep 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 03:46:45 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. src/net/write_unix_test.go

    package net
    
    import (
    	"bytes"
    	"syscall"
    	"testing"
    	"time"
    )
    
    // Test that a client can't trigger an endless loop of write system
    // calls on the server by shutting down the write side on the client.
    // Possibility raised in the discussion of https://golang.org/cl/71973.
    func TestEndlessWrite(t *testing.T) {
    	t.Parallel()
    	c := make(chan bool)
    	server := func(cs *TCPConn) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/events.md

    The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/shutdown/ShutdownHooks.java

                if (thread != null) {
                    Runtime.getRuntime().removeShutdownHook(thread);
                }
            } catch (IllegalStateException e) {
                // When shutting down is in progress, invocation of this method throws exception,
                // interrupting other shutdown hooks, so we catch it here.
                //
                // Caused by: java.lang.IllegalStateException: Shutdown in progress
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 12 05:56:18 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

        public void uncaughtException(Thread t, Throwable e) {
          try {
            logger
                .get()
                .log(
                    SEVERE,
                    String.format(Locale.ROOT, "Caught an exception in %s.  Shutting down.", t),
                    e);
          } catch (Throwable errorInLogging) { // sneaky checked exception
            // If logging fails, e.g. due to missing memory, at least try to log the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/dns/client/proxy.go

    	if err != nil {
    		log.Errorf("Local %s DNS server terminated: %v", p.protocol, err)
    	}
    }
    
    func (p *dnsProxy) close() {
    	if p.server != nil {
    		if err := p.server.Shutdown(); err != nil {
    			log.Errorf("error in shutting down %s dns downstreamUDPServer :%v", p.protocol, err)
    		}
    	}
    }
    
    func (p *dnsProxy) Address() string {
    	if p.server != nil {
    		if p.server.Listener != nil {
    			return p.server.Listener.Addr().String()
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:19 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    		TearDownConnection: true,
    		Message:            "The apiserver is shutting down, please try again later.",
    	}
    
    	// NOTE: both WithRetryAfter and WithWaitGroup must use the same exact isRequestExemptFunc 'isRequestExemptFromRetryAfter,
    	// otherwise SafeWaitGroup might wait indefinitely and will prevent the server from shutting down gracefully.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/base/tool.go

    		SetExitStatus(2)
    		Exit()
    	}
    	return toolPath
    }
    
    // ToolPath returns the path at which we expect to find the named tool
    // (for example, "vet"), and the error (if any) from statting that path.
    func ToolPath(toolName string) (string, error) {
    	toolPath := filepath.Join(build.ToolDir, toolName) + cfg.ToolExeSuffix()
    	err := toolStatCache.Do(toolPath, func() error {
    		_, err := os.Stat(toolPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:04:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top