Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 852 for data_ (0.11 sec)

  1. cmd/data-scanner.go

    )
    
    // initDataScanner will start the scanner in the background.
    func initDataScanner(ctx context.Context, objAPI ObjectLayer) {
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Run the data scanner in a loop
    		for {
    			runDataScanner(ctx, objAPI)
    			duration := time.Duration(r.Float64() * float64(scannerCycle.Load()))
    			if duration < time.Second {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

         */
        public static ClassSetAnalysisData merge(List<ClassSetAnalysisData> datas) {
            int classCount = 0;
            int constantsCount = 0;
            int dependentsCount = 0;
            for (ClassSetAnalysisData data : datas) {
                classCount += data.classHashes.size();
                constantsCount += data.classesToConstants.size();
                dependentsCount += data.dependents.size();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    	//	}
    	// The relevant segments are: noptrdata, data, bss, noptrbss.
    	// We cannot assume they are in any order or even contiguous,
    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    			datap.bss <= uintptr(p) && uintptr(p) < datap.ebss ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    			f2 := funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[i+1].funcoff])), datap}
    			f2name := "end"
    			if i+1 < nftab {
    				f2name = funcname(f2)
    			}
    			println("function symbol table not sorted by PC offset:", hex(datap.ftab[i].entryoff), funcname(f1), ">", hex(datap.ftab[i+1].entryoff), f2name, ", plugin:", datap.pluginpath)
    			for j := 0; j <= i; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    //go:nosplit
    func (r *debugLogReader) readUint16LEAt(pos uint64) uint16 {
    	return uint16(r.data.b[pos%uint64(len(r.data.b))]) |
    		uint16(r.data.b[(pos+1)%uint64(len(r.data.b))])<<8
    }
    
    //go:nosplit
    func (r *debugLogReader) readUint64LEAt(pos uint64) uint64 {
    	var b [8]byte
    	for i := range b {
    		b[i] = r.data.b[pos%uint64(len(r.data.b))]
    		pos++
    	}
    	return uint64(b[0]) | uint64(b[1])<<8 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            skipped ":customTask"
            file("build/output1.txt").text == "data1"
            file("build/output2.txt").text == "data2"
        }
    
        def "cacheable task with multiple outputs with not matching cardinality don't get cached"() {
            buildFile << """
                task customTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/os/readfrom_linux_test.go

    			t.Fatalf("failed to rewind the file: %v", err)
    		}
    
    		data2, err := io.ReadAll(f)
    		if err != nil {
    			t.Fatalf("failed to read from the file: %v", err)
    		}
    
    		// It should wind up a double of the original data.
    		if strings.Repeat(string(data), 2) != string(data2) {
    			t.Fatalf("data mismatch: %s != %s", string(data), string(data2))
    		}
    	})
    	t.Run("NotRegular", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        }
    
    
    sealed class TypeAccessibility {
        data class Accessible(val type: SchemaType) : TypeAccessibility()
        data class Inaccessible(val type: SchemaType, val reasons: List<InaccessibilityReason>) : TypeAccessibility()
    }
    
    
    sealed class InaccessibilityReason {
    
        data class NonPublic(val type: String) : InaccessibilityReason()
        data class NonAvailable(val type: String) : InaccessibilityReason()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. callbacks/preload.go

    			fieldValues[idx], _ = field.ValueOf(tx.Statement.Context, elem)
    		}
    
    		datas, ok := identityMap[utils.ToStringKey(fieldValues...)]
    		if !ok {
    			return fmt.Errorf("failed to assign association %#v, make sure foreign fields exists", elem.Interface())
    		}
    
    		for _, data := range datas {
    			reflectFieldValue := rel.Field.ReflectValueOf(tx.Statement.Context, data)
    			if reflectFieldValue.Kind() == reflect.Ptr && reflectFieldValue.IsNil() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top