Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 347 for Moon (0.04 sec)

  1. pkg/util/filesystem/watcher.go

    	errorHandler FSErrorHandler
    }
    
    var _ FSWatcher = &fsnotifyWatcher{}
    
    // NewFsnotifyWatcher returns an implementation of FSWatcher that continuously listens for
    // fsnotify events and calls the event handler as soon as an event is received.
    func NewFsnotifyWatcher() FSWatcher {
    	return &fsnotifyWatcher{}
    }
    
    func (w *fsnotifyWatcher) AddWatch(path string) error {
    	return w.watcher.Add(path)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/os/exec/lp_windows.go

    				// prefer the explicit name for the executable (and, likely, no error) instead
    				// of the equivalent implicit name with ErrDot.
    				//
    				// Otherwise, return the ErrDot for the implicit path as soon as we find
    				// out that the explicit one doesn't match.
    				dotfi, dotfiErr := os.Lstat(dotf)
    				fi, fiErr := os.Lstat(f)
    				if dotfiErr != nil || fiErr != nil || !os.SameFile(dotfi, fi) {
    					return dotf, dotErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"minReadySeconds":      "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).",
    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. pkg/apis/apps/types.go

    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/apis.go

    	//       coverage.ClearCounters()
    	//       if someCondition {   <<--- HERE
    	//         ...
    	//       }
    	//     }
    	//
    	// At the point where ClearCounters executes, main.XYZ has not yet
    	// finished running, thus as soon as the call returns the line
    	// marked "HERE" above will trigger the writing of a non-zero
    	// value into main.XYZ's counter slab. However since we've just
    	// finished clearing the entire counter segment, we will have lost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. cluster/gce/windows/configure.ps1

    # $KubeEnv is a hash table containing the kube-env metadata keys+values.
    # ENABLE_NODE_LOGGING is used for legacy Stackdriver Logging, and will be deprecated (always set to False)
    # soon. ENABLE_STACKDRIVER_WINDOWS is added to indicate whether logging is enabled for windows nodes.
    function IsLoggingEnabled {
      param (
        [parameter(Mandatory=$true)] [hashtable]$KubeEnv
      )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    The Dataflow Actions API provides a way to schedule this type of work.
    A dataflow action is a parameterized isolated piece of work that becomes eligible for execution as soon as all input parameters become available.
    
    == Implementing a dataflow action
    
    The first step is to implement the action itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/api_template_v1.__init__.py

    # API IMPORTS PLACEHOLDER
    
    # WRAPPER_PLACEHOLDER
    
    if "dev" in __version__:   # pylint: disable=undefined-variable
      _logging.warning("""
    
      TensorFlow's `tf-nightly` package will soon be updated to TensorFlow 2.0.
    
      Please upgrade your code to TensorFlow 2.0:
        * https://www.tensorflow.org/guide/migrate
    
      Or install the latest stable TensorFlow 1.X release:
        * `pip install -U "tensorflow==1.*"`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. docs/integrations/veeam/README.md

    - Since we selected Copy mode when creating the SOBR, the backup will be copied to the capacity tier as soon as it is created on the performance tier.
    
    - For Veeam Backup with Immutability, you can choose a number of restore points or days to make backups immutable.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/interface.go

    		ityp.tset = &topTypeSet
    		return
    	}
    
    	// sort for API stability
    	// (don't sort embeddeds: they must correspond to *embedPos entries)
    	sortMethods(ityp.methods)
    
    	// Compute type set as soon as possible to report any errors.
    	// Subsequent uses of type sets will use this computed type
    	// set and won't need to pass in a *Checker.
    	check.later(func() {
    		computeInterfaceTypeSet(check, iface.Pos(), ityp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top