Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nudge (0.07 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

    import static org.apache.commons.lang.StringUtils.substringAfterLast;
    
    /**
     * This class has two public APIs:
     *
     * <ul>
     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		capacity := max(w.capacity/2, w.lowerBoundCapacity)
    		if capacity < w.capacity {
    			w.doCacheResizeLocked(capacity)
    		}
    		return
    	}
    }
    
    // isCacheFullLocked used to judge whether watchCacheEvent is full.
    // Assumes that lock is already held for write.
    func (w *watchCache) isCacheFullLocked() bool {
    	return w.endIndex == w.startIndex+w.capacity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top