Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,002 for dAtA (0.04 sec)

  1. src/cmd/link/internal/ld/data.go

    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. pkg/controlplane/storageversionhashdata/data.go

    Alexander Zielenski <******@****.***> 1716482549 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. cmd/data-scanner_test.go

    Krishnan Parthasarathi <******@****.***> 1714735138 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. cmd/data-usage.go

    Harshavardhana <******@****.***> 1715215894 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. docs/ko/docs/tutorial/extra-data-types.md

    Nayeon Kim <******@****.***> 1718333110 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    		hashPathCutSet = dataUsageRoot + string(filepath.Separator)
    	}
    }
    
    // hashPath calculates a hash of the provided string.
    func hashPath(data string) dataUsageHash {
    	if data != dataUsageRoot {
    		data = strings.Trim(data, hashPathCutSet)
    	}
    	return dataUsageHash(path.Clean(data))
    }
    
    //msgp:ignore dataUsageHashMap
    type dataUsageHashMap map[string]struct{}
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. src/cmd/trace/jsontrace_test.go

    			checkProcStartStop(t, data)
    			checkSyscalls(t, data)
    			checkNetworkUnblock(t, data)
    			// TODO(mknyszek): Check for flow events.
    		})
    	}
    }
    
    func checkSyscalls(t *testing.T, data format.Data) {
    	data = filterViewerTrace(data,
    		filterEventName("syscall"),
    		filterStackRootFunc("main.blockingSyscall"))
    	if len(data.Events) <= 1 {
    		t.Errorf("got %d events, want > 1", len(data.Events))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayRoutedDataContainers.kt

            is FromUnderlay -> underlay.data(node)
            is FromOverlay -> overlay.data(node)
            is OverlayNodeOrigin.ShadowedProperty -> overlay.data(from.overlayProperty)
        }
    
        override fun data(node: DeclarativeDocument.DocumentNode.ErrorNode): DError = when (overlayOriginContainer.data(node)) {
            is FromUnderlay -> underlay.data(node)
            is FromOverlay -> overlay.data(node)
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/internal/zstd/window.go

    		from := len(buf) - w.size
    		w.data = append(w.data[:0], buf[from:]...)
    		w.off = 0
    		return
    	}
    
    	// Update off to point to the oldest remaining byte.
    	free := w.size - len(w.data)
    	if free == 0 {
    		n := copy(w.data[w.off:], buf)
    		if n == len(buf) {
    			w.off += n
    		} else {
    			w.off = copy(w.data, buf[n:])
    		}
    	} else {
    		if free >= len(buf) {
    			w.data = append(w.data, buf...)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top