Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,083 for watched (0.2 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

            OsxFileWatcher watcher,
            FileWatcherProbeRegistry probeRegistry,
            WatchableHierarchies watchableHierarchies
        ) {
            return new HierarchicalFileWatcherUpdater(watcher, DarwinFileWatcherRegistryFactory::validateLocationToWatch, probeRegistry, watchableHierarchies, root -> Collections.emptyList());
        }
    
        /**
         * The macOS native watcher reports the canonical path for watched paths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. releasenotes/notes/33293.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
      - 33293
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 15:12:21 UTC 2021
    - 187 bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

             *
             * On Windows when watched directories are moved, the OS does not send a notification,
             * even though the VFS should be updated.
             *
             * On Linux, when you move the parent directory of a watched directory, then there isn't a notification.
             *
             * Our best bet here is to cull any moved watched directories from the VFS at the start of every build.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

        def setup() {
            updater = createUpdater(watcher, watchableHierarchies)
        }
    
        /**
         * Returns 1 for non-hierarchical watchers, and 0 for hierarchical watchers.
         *
         * For use in interaction tests, when an interaction only happens for non-hierarchical watchers.
         * E.g.:
         * ifNonHierarchical * watcher.startWatching(_)
         */
        abstract int getIfNonHierarchical()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/kube"
    )
    
    const (
    	configMapNamespace string = "istio-system"
    	configMapName      string = "watched"
    )
    
    func makeConfigMap(name, resourceVersion string) *v1.ConfigMap {
    	return &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace:       configMapNamespace,
    			Name:            name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
         * It is also called for the root directories of included builds, and all other nested builds.
         */
        void registerWatchableHierarchy(File rootDirectoryForWatching);
    
        /**
         * Returns if anything is being watched.
         */
        boolean isWatchingAnyLocations();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            def symlink = linkdir.file("link")
            // Since we remove symlinks at the end of the build from the VFS, we
            // need an existing sibling of the symlink to ensure the parent directory of
            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
            inputs.files symlink
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pkg/filewatcher/worker.go

    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    	// to the result channel.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    )
    
    // Event represents a single event to a watched resource.
    // +k8s:deepcopy-gen=true
    type Event struct {
    	Type EventType
    
    	// Object is:
    	//  * If Type is Added or Modified: the new state of the object.
    	//  * If Type is Deleted: the state of the object immediately before deletion.
    	//  * If Type is Bookmark: the object (instance of a type being watched) where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

            try {
                watcher.shutdown();
                if (!watcher.awaitTermination(5, TimeUnit.SECONDS)) {
                    throw new RuntimeException("Watcher did not terminate within 5 seconds");
                }
            } catch (InterruptedException e) {
                Thread.currentThread().interrupt();
                throw new InterruptedIOException("Awaiting termination of watcher was interrupted");
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top