Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for watchable2 (0.29 sec)

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

                LOGGER.debug("Did not find watchable hierarchy to arm probe for: {}", watchableHierarchy);
            }
        }
    
        @Override
        public void disarmWatchProbe(File watchableHierarchy) {
            WatchProbe probe = watchProbesByHierarchy.get(watchableHierarchy);
            if (probe != null) {
                probe.disarm();
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

          - list
          - create
          - update
          - delete
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - ipamconfigs
        verbs:
          - get
      # Block affinities must also be watchable by confd for route aggregation.
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - blockaffinities
        verbs:
          - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            0 * _
        }
    
        def "removes content on unsupported file systems at the end of the build"() {
            def watchableHierarchy = file("watchable").createDir()
            def watchableContent = watchableHierarchy.file("some/dir/file.txt").createFile()
            def unsupportedFileSystemMountPoint = watchableHierarchy.file("unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    	if r.err != nil {
    		return nil, r.err
    	}
    	if len(r.sources) != 1 {
    		return nil, fmt.Errorf("you may only watch a single resource or type of resource at a time")
    	}
    	w, ok := r.sources[0].(Watchable)
    	if !ok {
    		info, err := r.Infos()
    		if err != nil {
    			return nil, err
    		}
    		if len(info) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            0 * _
    
            watchingVirtualFileSystem.root == nonEmptySnapshotHierarchy
        }
    
        def "collects hierarchies to watch and notifies the vfs"() {
            def watchableHierarchy = new File("watchable")
            def watcherProbe = new File(watchableHierarchy, ".gradle/watch-probe")
            def anotherWatchableHierarchy = new File("anotherWatchable")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/node_matchers.h

    //
    // Example usage:
    //
    //  tensorflow::Node* node = ...;
    //  EXPECT_THAT(node, NodeWith(Name("name"), Op("op"),
    //                             Inputs(Out(3, NodeWith(Name("input"))))))
    //
    // Matchable node properties (the expressions that go inside NodeWith(...))
    // are:
    //
    //  - Name(string): matches the node name exactly.  We will probably need to
    //    have this take a string matcher soon in the future.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    const (
    	constSTDINstr       = "STDIN"
    	stopValidateMessage = "if you choose to ignore these errors, turn validation off with --validate=false"
    )
    
    // Watchable describes a resource that can be watched for changes that occur on the server,
    // beginning after the provided resource version.
    type Watchable interface {
    	Watch(resourceVersion string) (watch.Interface, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

        private final FileChangeListeners fileChangeListeners;
        private final List<File> unsupportedFileSystems = new ArrayList<>();
        private Logger warningLogger = LOGGER;
    
        /**
         * Watchable hierarchies registered before the {@link FileWatcherRegistry} has been started.
         */
        private final Set<File> watchableHierarchiesRegisteredEarly = new LinkedHashSet<>();
    
        private FileWatcherRegistry watchRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun checkFingerprint(entryDetails: EntryDetails, layout: ConfigurationCacheRepository.Layout): CheckedFingerprint {
            // Register all included build root directories as watchable hierarchies,
            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
            registerWatchableBuildDirectories(entryDetails.rootDirs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    func (re *Regexp) put(m *machine) {
    	m.re = nil
    	m.p = nil
    	m.inputs.clear()
    	matchPool[re.mpool].Put(m)
    }
    
    // minInputLen walks the regexp to find the minimum length of any matchable input.
    func minInputLen(re *syntax.Regexp) int {
    	switch re.Op {
    	default:
    		return 0
    	case syntax.OpAnyChar, syntax.OpAnyCharNotNL, syntax.OpCharClass:
    		return 1
    	case syntax.OpLiteral:
    		l := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top