Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for sub32a (0.13 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

                    it.tasks.register("myTask") {
                    }
                }
            """
            ['foo', 'bar', 'included/sub1', 'included/sub2'].each { file(it).mkdirs() }
            file('included/settings.gradle') << """
                include 'sub1', 'sub2'
            """
            file('included/build.gradle') << """
                tasks.register("myTask") {
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithImports.java

    package org.gradle.test;
    
    import org.gradle.test.sub.*;
    import org.gradle.test.sub2.Sub2Interface;
    
    import java.io.Closeable;
    import java.io.IOException;
    
    public class JavaClassWithImports extends SubClass implements SubJavaInterface, Sub2Interface, Closeable {
        public void close() throws IOException {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 315 bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

                        org.test.Library.print("First");
                    }
                }
            """
            def mainSourceSub2 = file("sub2/src/main/java/com/example/sub2/Main.java")
            mainSourceSub2 << """
                package com.example.sub2;
    
                public class Main {
                    public static void main(String... args) {
                        org.test.Library.print("Second");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. internal/ringbuffer/ring_buffer_test.go

    		}
    		t.Fatalf("expect read %d bytes but got %d", wroteBytes, readBytes)
    	}
    	if readHash.Sum32() != wroteHash.Sum32() {
    		t.Fatalf("expect read hash 0x%08x but got 0x%08x", readHash.Sum32(), wroteHash.Sum32())
    	}
    }
    
    func TestRingBuffer_BlockingBig(t *testing.T) {
    	// Typical runtime is ~5-10s.
    	defer timeout(60 * time.Second)()
    	const debug = false
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/hash/hash.go

    	// are a multiple of the block size.
    	BlockSize() int
    }
    
    // Hash32 is the common interface implemented by all 32-bit hash functions.
    type Hash32 interface {
    	Hash
    	Sum32() uint32
    }
    
    // Hash64 is the common interface implemented by all 64-bit hash functions.
    type Hash64 interface {
    	Hash
    	Sum64() uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithInnerTypes.groovy

    package org.gradle.test
    
    import org.gradle.test.sub2.GroovyInterface
    
    class GroovyClassWithInnerTypes implements GroovyInterface {
        /**
         * This is an inner enum.
         */
        enum InnerEnum {}
    
        /**
         * This is an inner class.
         */
        static class InnerClass {
            InnerEnum enumProp
    
            /**
             * This is an inner inner class.
             */
            class AnotherInner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 609 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_striped.go

    }
    func (c *stripedCache) remove(key string) {
    	c.caches[c.hashFunc(key)%c.stripeCount].remove(key)
    }
    
    func fnvHashFunc(key string) uint32 {
    	f := fnv.New32()
    	f.Write([]byte(key))
    	return f.Sum32()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. pkg/kubelet/checkpointmanager/checksum/checksum.go

    	return Checksum(getChecksum(data))
    }
    
    // Get returns calculated checksum of checkpoint data
    func getChecksum(data interface{}) uint64 {
    	hash := fnv.New32a()
    	hashutil.DeepHashObject(hash, data)
    	return uint64(hash.Sum32())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 01:56:43 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

            setup:
            settingsFile << '''
                rootProject.name = 'root'
                include 'sub1'
                include 'sub1:sub2'
            '''
            buildFile << '''
                allprojects {
                    tasks.register('foo')
                }
            '''
            file('sub1/sub2').mkdirs()
    
            when:
            launchTestWithTestFilter(toolingApi.connector().forProjectDirectory(projectDir.file('sub1'))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/hash_test.go

    	}
    }
    
    func getPodTemplateSpecOldHash(template v1.PodTemplateSpec) uint32 {
    	podTemplateSpecHasher := adler32.New()
    	hashutil.DeepHashObject(podTemplateSpecHasher, template)
    	return podTemplateSpecHasher.Sum32()
    }
    
    func BenchmarkFnv(b *testing.B) {
    	spec := v1.PodTemplateSpec{}
    	json.Unmarshal([]byte(podSpec), &spec)
    
    	for i := 0; i < b.N; i++ {
    		controller.ComputeHash(&spec, nil)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 28 19:00:40 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top