Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,204 for cyclone (0.12 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"cursing_face":                         "\U0001f92c",
    	"custard":                              "\U0001f36e",
    	"customs":                              "\U0001f6c3",
    	"cut_of_meat":                          "\U0001f969",
    	"cyclone":                              "\U0001f300",
    	"cyprus":                               "\U0001f1e8\U0001f1fe",
    	"czech_republic":                       "\U0001f1e8\U0001f1ff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/unique/clone.go

    	"unsafe"
    )
    
    // clone makes a copy of value, and may update string values found in value
    // with a cloned version of those strings. The purpose of explicitly cloning
    // strings is to avoid accidentally giving a large string a long lifetime.
    //
    // Note that this will clone strings in structs and arrays found in value,
    // and will clone value if it itself is a string. It will not, however, clone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/strings/clone.go

    import (
    	"internal/stringslite"
    )
    
    // Clone returns a fresh copy of s.
    // It guarantees to make a copy of s into a new allocation,
    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    // Clone should typically be used only rarely, and only when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  4. src/net/http/clone.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneOrMakeHeader
    func cloneOrMakeHeader(hdr Header) Header {
    	clone := hdr.Clone()
    	if clone == nil {
    		clone = make(Header)
    	}
    	return clone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    // range of data conveyed in value to the file associated with the file
    // descriptor destFd. See the ioctl_ficlonerange(2) man page for details.
    func IoctlFileCloneRange(destFd int, value *FileCloneRange) error {
    	return ioctlPtr(destFd, FICLONERANGE, unsafe.Pointer(value))
    }
    
    // IoctlFileClone performs an FICLONE ioctl operation to clone the entire file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/cycle.elf

    Austin Clements <******@****.***> 1452288329 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 02:05:31 UTC 2016
    - 2.6K bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/cycle.c

    Austin Clements <******@****.***> 1452288329 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 02:05:31 UTC 2016
    - 103 bytes
    - Viewed (0)
  8. src/html/template/clone_test.go

    	}
    
    	// Clone t0. This should fail, as t0 has already executed.
    	if _, err := t0.Clone(); err == nil {
    		t.Error(`t0.Clone(): got nil err want non-nil`)
    	}
    
    	// Similarly, cloning sub-templates should fail.
    	if _, err := t0.Lookup("a").Clone(); err == nil {
    		t.Error(`t0.Lookup("a").Clone(): got nil err want non-nil`)
    	}
    	if _, err := t0.Lookup("lhs").Clone(); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. cmd/data-scanner-metric.go

    	if p.cycleInfo == nil {
    		return nil
    	}
    	c := p.cycleInfo.clone()
    	return &c
    }
    
    func (p *scannerMetrics) report() madmin.ScannerMetrics {
    	var m madmin.ScannerMetrics
    	cycle := p.getCycle()
    	if cycle != nil {
    		m.CurrentCycle = cycle.current
    		m.CyclesCompletedAt = cycle.cycleCompleted
    		m.CurrentStarted = cycle.started
    	}
    	m.CollectedAt = time.Now()
    	m.ActivePaths = p.getCurrentPaths()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. internal/config/heal/heal.go

    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    		// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
    		bitrotCycle time.Duration
    	}
    }
    
    // BitrotScanCycle returns the configured cycle for the scanner healing
    // -1 for not enabled
    //
    //	0 for contiunous bitrot scanning
    //
    // >0 interval duration between cycles
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top