Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for squatting (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// If the API is unapproved, you may set the annotation to a string starting with `"unapproved"`.  For instance, `"unapproved, temporarily squatting"` or `"unapproved, experimental-only"`.  This is discouraged.
    	KubeAPIApprovedAnnotation = "api-approved.kubernetes.io"
    
    	// NoneConverter is a converter that only sets apiversion of the CR and leave everything else unchanged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    		// newly created Services cannot take ownership unexpectedly. However, the Service is from Kubernetes it should
    		// take precedence over ones not. This prevents someone from "domain squatting" on the hostname before a Kubernetes Service is created.
    		if existing.Attributes.ServiceRegistry != provider.Kubernetes && s.Attributes.ServiceRegistry == provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// If the API is unapproved, you may set the annotation to a string starting with `"unapproved"`.  For instance, `"unapproved, temporarily squatting"` or `"unapproved, experimental-only"`.  This is discouraged.
    	KubeAPIApprovedAnnotation = "api-approved.kubernetes.io"
    
    	// NoneConverter is a converter that only sets apiversion of the CR and leave everything else unchanged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		// newly created Services cannot take ownership unexpectedly.
    		// However, the Service is from Kubernetes it should take precedence over ones not. This prevents someone from
    		// "domain squatting" on the hostname before a Kubernetes Service is created.
    		if existing := ps.ServiceIndex.HostnameAndNamespace[s.Hostname][s.Attributes.Namespace]; existing != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    	// NOTE: both WithWaitGroup and WithRetryAfter must use the same exact isRequestExemptFunc 'isRequestExemptFromRetryAfter,
    	// otherwise SafeWaitGroup might wait indefinitely and will prevent the server from shutting down gracefully.
    	return withWaitGroup(handler, longRunning, wg, isRequestExemptFromRetryAfter)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    			// When apiserver is shutting down, signal clients to retry
    			// There is a good chance the client hit a different server, so a tight retry is good for client responsiveness.
    			waitGroupWriteRetryAfterToResponse(w)
    			return
    		}
    
    		// attach ServerShutdownSignal to the watch request so that the
    		// watch handler loop can return as soon as the server signals
    		// that it is shutting down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. build/pause/windows/pause.c

    #ifndef VERSION
    #define VERSION HEAD
    #endif
    
    BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
    {
    	switch (fdwCtrlType)
    	{
    	case CTRL_C_EVENT:
    		fprintf(stderr, "Shutting down, got signal\n");
    		exit(0);
    
    	case CTRL_BREAK_EVENT:
    		fprintf(stderr, "Shutting down, got signal\n");
    		exit(0);
    
    	default:
    		return FALSE;
    	}
    }
    
    int main(int argc, char **argv)
    {
    	int i;
    	for (i = 1; i < argc; ++i)
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. cmd/admin-heal-ops.go

    	h.mutex.Lock()
    	defer h.mutex.Unlock()
    
    	h.healedItemsMap[healType]++
    	h.lastHealActivity = UTCNow()
    }
    
    // isQuitting - determines if the heal sequence is quitting (due to an
    // external signal)
    func (h *healSequence) isQuitting() bool {
    	select {
    	case <-h.ctx.Done():
    		return true
    	default:
    		return false
    	}
    }
    
    // check if the heal sequence has ended
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. pilot/pkg/server/instance_test.go

    			// This is used to verify that we don't wait for it while shutting down.
    			c:     newFakeComponent(longDuration, stop),
    			async: false,
    			wait:  false,
    		},
    		{
    			name: "RunComponentAsync",
    			// Use a large duration - it will not complete before the end of the test.
    			// This is used to verify that we don't wait for it while shutting down.
    			c:     newFakeComponent(longDuration, stop),
    			async: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 23:02:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/go120.go

    //go:build go1.20
    
    package main
    
    import (
    	"os"
    	"os/exec"
    	"time"
    )
    
    func cmdInterrupt(cmd *exec.Cmd) {
    	cmd.Cancel = func() error {
    		// On timeout, send interrupt,
    		// in hopes of shutting down process tree.
    		// Ignore errors sending signal; it's all best effort
    		// and not even implemented on Windows.
    		// TODO(rsc): Maybe use a new process group and kill the whole group?
    		cmd.Process.Signal(os.Interrupt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 628 bytes
    - Viewed (0)
Back to top