Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for data32 (0.1 sec)

  1. src/time/zoneinfo_android.go

    	buf := make([]byte, headersize)
    	if err := preadn(fd, buf, 0); err != nil {
    		return nil, errors.New("corrupt tzdata file " + file)
    	}
    	d := dataIO{buf, false}
    	if magic := d.read(6); string(magic) != "tzdata" {
    		return nil, errors.New("corrupt tzdata file " + file)
    	}
    	d = dataIO{buf[12:], false}
    	indexOff, _ := d.big4()
    	dataOff, _ := d.big4()
    	indexSize := dataOff - indexOff
    	entrycount := indexSize / entrysize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractor.kt

                        when (it.name) {
                            "d1" -> data1 = it.value.map { arrayItem -> arrayItem.value as String }.toTypedArray()
                            "d2" -> data2 = it.value.map { arrayItem -> arrayItem.value as String }.toTypedArray()
                        }
                }
            }
            return KotlinClassHeader(kind, metadataVersion, data1, data2, extraString, packageName, extraInt)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/groovy/src/test/java/org/gradle/testng/TestFactory.java

    public class TestFactory {
    
        @DataProvider(name = "data")
        public static Object[][] provide() {
            return new Object[][] {
                { "data1" },
                { "data2" }
            };
        }
    
        private String data;
    
        @Factory(dataProvider = "data")
        public TestFactory(String data) {
            this.data = data;
        }
    
        @BeforeClass
        public void beforeClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/math/atan2.go

    //	Atan2(+Inf, -Inf) = 3Pi/4
    //	Atan2(-Inf, -Inf) = -3Pi/4
    //	Atan2(y, +Inf) = 0
    //	Atan2(y>0, -Inf) = +Pi
    //	Atan2(y<0, -Inf) = -Pi
    //	Atan2(+Inf, x) = +Pi/2
    //	Atan2(-Inf, x) = -Pi/2
    func Atan2(y, x float64) float64 {
    	if haveArchAtan2 {
    		return archAtan2(y, x)
    	}
    	return atan2(y, x)
    }
    
    func atan2(y, x float64) float64 {
    	// special cases
    	switch {
    	case IsNaN(y) || IsNaN(x):
    		return NaN()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache_test.go

    		t.Fatal(err)
    	}
    	if _, err := c.Get(id); err != nil {
    		t.Fatal(err)
    	}
    	c.OutputFile(entry.OutputID)
    	data2, err := os.ReadFile(filepath.Join(dir, "trim.txt"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(data, data2) {
    		t.Fatalf("second trim did work: %q -> %q", data, data2)
    	}
    
    	// Fast forward and do another trim just before the 5 day cutoff.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java

     * @author Sven Mawson
     * @author Kurt Alfred Kluever
     */
    public class JdkFutureAdaptersTest extends TestCase {
      private static final String DATA1 = "data";
    
      public void testListenInPoolThreadReturnsSameFuture() throws Exception {
        ListenableFuture<String> listenableFuture = immediateFuture(DATA1);
        assertSame(listenableFuture, listenInPoolThread(listenableFuture));
      }
    
      private static class SingleCallListener implements Runnable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2_test.go

    	}
    
    	// Replace entry
    	xl2.data.replace("756100c6-b393-4981-928a-d49bbc164741", data2)
    	failOnErr(xl2.data.validate())
    	if xl2.data.entries() != 2 {
    		t.Fatal("want 2 entries, got", xl2.data.entries())
    	}
    	if !bytes.Equal(xl2.data.find("756100c6-b393-4981-928a-d49bbc164741"), data2) {
    		t.Fatal("Find data returned", xl2.data.find("756100c6-b393-4981-928a-d49bbc164741"))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompileRelocationIntegrationTest.groovy

        @Override
        protected void setupProjectIn(TestFile projectDir) {
            projectDir.file("libs").createDir()
            projectDir.file("libs/lib1.jar") << jarWithContents("data.txt": "data1")
            projectDir.file("libs/lib2.jar") << jarWithContents("data.txt": "data2")
            projectDir.file("src/main/groovy/sub-dir").createDir()
            projectDir.file("src/main/groovy/Foo.java") << "class Foo {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileRelocationIntegrationTest.groovy

        @Override
        protected void setupProjectIn(TestFile projectDir) {
            projectDir.file("libs").createDir()
            projectDir.file("libs/lib1.jar") << jarWithContents("data.txt": "data1")
            projectDir.file("libs/lib2.jar") << jarWithContents("data.txt": "data2")
            projectDir.file("src/main/java/sub-dir").createDir()
            projectDir.file("src/main/java/Foo.java") << "public class Foo {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/data.go

    	if int64(cap(s.P)) >= c {
    		return
    	}
    	if s.P == nil {
    		s.P = make([]byte, 0, c)
    		return
    	}
    	b := make([]byte, len(s.P), c)
    	copy(b, s.P)
    	s.P = b
    }
    
    // prepwrite prepares to write data of size siz into s at offset off.
    func (s *LSym) prepwrite(ctxt *Link, off int64, siz int) {
    	if off < 0 || siz < 0 || off >= 1<<30 {
    		ctxt.Diag("prepwrite: bad off=%d siz=%d s=%v", off, siz, s)
    	}
    	switch s.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
Back to top