Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 336 for Enforce (0.97 sec)

  1. guava/src/com/google/common/util/concurrent/ServiceManager.java

         * correctly installed
         *
         * <p>{@link #transitioned}: is set by {@link #transitionService} to indicate that some
         * transition has been performed.
         *
         * <p>Together, they allow us to enforce that all services have their listeners installed prior
         * to any service performing a transition, then we can fail in the ServiceManager constructor
         * rather than in a Service.Listener callback.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	server.Host = globalMinioConsoleHost
    	server.Port = consolePort
    	consoleapi.Port = globalMinioConsolePort
    	consoleapi.Hostname = globalMinioConsoleHost
    
    	if globalIsTLS {
    		// If TLS certificates are provided enforce the HTTPS.
    		server.EnabledListeners = []string{"https"}
    		server.TLSPort = consolePort
    		// Need to store tls-port, tls-host un config variables so secure.middleware can read from there
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		return nil
    	}
    	minimumRV, err := s.versioner.ParseResourceVersion(minimumResourceVersion)
    	if err != nil {
    		return apierrors.NewBadRequest(fmt.Sprintf("invalid resource version: %v", err))
    	}
    	// Enforce the storage.Interface guarantee that the resource version of the returned data
    	// "will be at least 'resourceVersion'".
    	if minimumRV > actualRevision {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/eviction_test.go

    		}
    		ms.pod.ResourceVersion = "999"
    		// Always return conflict on the first attempt
    		return nil, false, apierrors.NewConflict(resource("tests"), "2", errors.New("message"))
    	}
    	// Compare enforce deletionOptions
    	if options == nil || options.Preconditions == nil || options.Preconditions.ResourceVersion == nil {
    		return nil, true, nil
    	} else if *options.Preconditions.ResourceVersion != "1000" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (1)
  5. pkg/kubelet/status/status_manager.go

    )
    
    // podStatusManagerStateFile is the file name where status manager stores its state
    const podStatusManagerStateFile = "pod_status_manager_state"
    
    // A wrapper around v1.PodStatus that includes a version to enforce that stale pod statuses are
    // not sent to the API server.
    type versionedPodStatus struct {
    	// version is a monotonically increasing version number (per pod).
    	version uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    Containers are mainly a tool to simplify the process of **building and deploying** an application, but they don't enforce a particular approach to handle these **deployment concepts**, and there are several possible strategies.
    
    The **good news** is that with each different strategy there's a way to cover all of the deployment concepts. 🎉
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.StringSliceVar(&c.EnforceNodeAllocatable, "enforce-node-allocatable", c.EnforceNodeAllocatable, "A comma separated list of levels of node allocatable enforcement to be enforced by kubelet. Acceptable options are 'none', 'pods', 'system-reserved', and 'kube-reserved'. If the latter two options are specified, '--system-reserved-cgroup' and '--kube-reserved-cgroup'...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	WatchTracker
    
    	// MaxSeatsTracker tracks the maximum seats that should be allocatable from the
    	// work estimator for a given priority level. This controller does not enforce
    	// any limits on max seats stored in this tracker, it is up to the work estimator
    	// to set lower/upper limits on max seats (currently min=1, max=10).
    	MaxSeatsTracker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/coderepo.go

    	// pseudo-version is based to refer to some ancestor of the revision. We
    	// prefer the highest such tag when constructing a new pseudo-version, but do
    	// not enforce that property when resolving existing pseudo-versions: we don't
    	// know when the parent tags were added, and the highest-tagged parent may not
    	// have existed when the pseudo-version was first resolved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc.go

    	// The backing store of each summary level is reserved in init
    	// and may or may not be committed in grow (small address spaces
    	// may commit all the memory in init).
    	//
    	// The purpose of keeping len <= cap is to enforce bounds checks
    	// on the top end of the slice so that instead of an unknown
    	// runtime segmentation fault, we get a much friendlier out-of-bounds
    	// error.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top