Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 204 for haninge (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                ElementsFromCollection<?> that = (ElementsFromCollection<?>) o;
    
                // We're fine with having weak contract of Iterable/Collection.equals.
                @SuppressWarnings("UndefinedEquals")
                boolean result = Objects.equal(value, that.value);
                return result;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/crypto/ecdh/nist.go

    		panic("crypto/ecdh: internal error: mismatched isLess inputs")
    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    	for i := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                '-Porg.gradle.java.installations.auto-download=false',
            ]
        }
    
        private static List<String> kotlinDslParameters() {
            return [
                // Having this unset is now deprecated, will default to `false` in Gradle 9.0
                // TODO remove - see https://github.com/gradle/gradle/issues/26810
                '-Dorg.gradle.kotlin.dsl.skipMetadataVersionCheck=false',
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. gradlew

    #         * functions;
    #         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
    #           «${var#prefix}», «${var%suffix}», and «$( cmd )»;
    #         * compound commands having a testable exit status, especially «case»;
    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/sync/rwmutex.go

    // is an RWMutex, and we can't change that without breaking compatibility.
    // We don't need or want RWMutex semantics for ForkLock, and we use
    // this private API to avoid having to change the type of ForkLock.
    // For more details see the syscall package.
    //
    //go:linkname syscall_hasWaitingReaders syscall.hasWaitingReaders
    func syscall_hasWaitingReaders(rw *RWMutex) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-version/LICENSE

         means a work that combines Covered Software with other material, in a separate
         file or files, that is not Covered Software.
    
    1.8. “License”
    
         means this document.
    
    1.9. “Licensable”
    
         means having the right to grant, to the maximum extent possible, whether at the
         time of the initial grant or subsequently, any and all of the rights conveyed by
         this License.
    
    1.10. “Modifications”
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    		time.Sleep(time.Millisecond)
    		return 42
    	}
    	var mstats1, mstats2 runtime.MemStats
    	runtime.ReadMemStats(&mstats1)
    	b.RunParallel(func(pb *testing.PB) {
    		// Simulate 100X the number of goroutines having items
    		// checked out from the Pool simultaneously.
    		items := make([]any, 100)
    		var sink []byte
    		for pb.Next() {
    			// Stress the pool.
    			for i := range items {
    				items[i] = p.Get()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //	            t.Errorf("Marshal: %v", err)
    //	        }
    //	    })
    //	}
    //
    // # Subtests and Sub-benchmarks
    //
    // The Run methods of T and B allow defining subtests and sub-benchmarks,
    // without having to define separate functions for each. This enables uses
    // like table-driven benchmarks and creating hierarchical tests.
    // It also provides a way to share common setup and tear-down code:
    //
    //	func TestFoo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. cmd/erasure-healing.go

    			errs, bucket, object, versionID), err
    	}
    
    	result.ParityBlocks = result.DiskCount - readQuorum
    	result.DataBlocks = readQuorum
    
    	// List of disks having latest version of the object xl.meta
    	// (by modtime).
    	onlineDisks, modTime, etag := listOnlineDisks(storageDisks, partsMetadata, errs, readQuorum)
    
    	// Latest FileInfo for reference. If a valid metadata is not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * that we can provide a status to Maven dependencies and still use attribute matching
         * to use the right version.
         */
        def "can select the latest.#status version having release status"() {
            given:
            def versions = [
                '1': 'release',
                '2': 'milestone',
                '3': 'integration',
                '4': 'release',
                '5': 'integration'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top