Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,389 for light (0.05 sec)

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

     *
     * <dl>
     *     <dt>file system hierarchy</dt>
     *     <dd>A directory on the file system with all its descendants.</dd>
     *
     *     <dt>watchable hierarchies</dt>
     *     <dd>The list of file system hierarchies Gradle might want to watch if interesting content appears in the VFS for them.
     *     These are currently roots of the builds seen by the daemon during the current or previous invocations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

            } else {
                return PluginResolutionResult.found(new InjectedClasspathPluginResolution(plugin));
            }
        }
    
        public String getDescription() {
            // It's true right now that this is always coming from the TestKit, but might not be in the future.
            return "Gradle TestKit";
        }
    
        private static class InjectedClasspathPluginResolution implements PluginResolution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    	MaximumAllowedMinorVersionKubeletSkew = 3
    )
    
    // VersionSkewPolicyErrors describes version skew errors that might be seen during the validation process in EnforceVersionPolicies
    type VersionSkewPolicyErrors struct {
    	Mandatory []error
    	Skippable []error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Unions.java

            } else if (right instanceof GroupExclude) {
                return tryGroupUnion((GroupExclude) right, left);
            }
            if (left instanceof ModuleSetExclude) {
                return tryModuleSetUnion((ModuleSetExclude) left, right);
            } else if (right instanceof ModuleSetExclude) {
                return tryModuleSetUnion((ModuleSetExclude) right, left);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/crypto/des/cipher.go

    	}
    
    	b := byteorder.BeUint64(src)
    	b = permuteInitialBlock(b)
    	left, right := uint32(b>>32), uint32(b)
    
    	left = (left << 1) | (left >> 31)
    	right = (right << 1) | (right >> 31)
    
    	for i := 0; i < 8; i++ {
    		left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
    	}
    	for i := 0; i < 8; i++ {
    		right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/reporter.go

    	}
    	// for every resource in flight
    	for _, ipr := range r.inProgressResources {
    		res := ipr.Resource
    		key := res.String()
    		// for every version (nonce) of the config currently in play
    		for nonce, dataplanes := range r.reverseStatus {
    
    			// check to see if this version of the config contains this version of the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Pair.java

            return !(left != null ? !left.equals(pair.left) : pair.left != null) && !(right != null ? !right.equals(pair.right) : pair.right != null);
        }
    
        @Override
        public int hashCode() {
            int result = left != null ? left.hashCode() : 0;
            result = 31 * result + (right != null ? right.hashCode() : 0);
            return result;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/strings/search.go

    	//
    	// 1. The matched suffix occurs elsewhere in pattern (with a different
    	// byte preceding it that we might possibly match). In this case, we can
    	// shift the matching frame to align with the next suffix chunk. For
    	// example, the pattern "mississi" has the suffix "issi" next occurring
    	// (in right-to-left order) at index 1, so goodSuffixSkip[3] ==
    	// shift+len(suffix) == 3+4 == 7.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. mockwebserver/README.md

    MockWebServer
    =============
    
    A scriptable web server for testing HTTP clients
    
    
    ### Motivation
    
    This library makes it easy to test that your app Does The Right Thing when it
    makes HTTP and HTTPS calls. It lets you specify which responses to return and
    then verify that requests were made as expected.
    
    Because it exercises your full HTTP stack, you can be confident that you're
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. test/maplinear.go

    )
    
    // checkLinear asserts that the running time of f(n) is in O(n).
    // tries is the initial number of iterations.
    func checkLinear(typ string, tries int, f func(n int)) {
    	// Depending on the machine and OS, this test might be too fast
    	// to measure with accurate enough granularity. On failure,
    	// make it run longer, hoping that the timing granularity
    	// is eventually sufficient.
    
    	timeF := func(n int) time.Duration {
    		t1 := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top