Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 230 for forced (0.17 sec)

  1. README.md

    - Read the release notes for MinIO *before* performing any upgrade, there is no forced requirement to upgrade to latest release upon every release. Some release may not be relevant to your setup, avoid upgrading production environments unnecessarily.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    	if !strings.HasPrefix(strOut, expected) {
    		t.Errorf("expected prefix: %q", expected)
    	}
    }
    
    // Test for https://go.dev/issue/19661: unshare fails because systemd
    // has forced / to be shared
    func TestUnshareMountNameSpace(t *testing.T) {
    	const mountNotSupported = "mount is not supported: " // Output prefix indicating a test skip.
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

     * </ul>
     *
     * Use this task to get insight into a particular dependency (or dependencies)
     * and find out what exactly happens during dependency resolution and conflict resolution.
     * If the dependency version was forced or selected by the conflict resolution
     * this information will be available in the report.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    	/gc/heap/frees-by-size:bytes
    		Distribution of freed heap allocations by approximate size.
    		Bucket counts increase monotonically. Note that this does not
    		include tiny objects as defined by /gc/heap/tiny/allocs:objects,
    		only tiny blocks.
    
    	/gc/heap/frees:bytes
    		Cumulative sum of heap memory freed by the garbage collector.
    
    	/gc/heap/frees:objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/net/net.go

    	export GODEBUG=netdns=go    # force pure Go resolver
    	export GODEBUG=netdns=cgo   # force native resolver (cgo, win32)
    
    The decision can also be forced while building the Go source tree
    by setting the netgo or netcgo build tag.
    
    A numeric netdns setting, as in GODEBUG=netdns=1, causes the resolver
    to print debugging information about its decisions.
    To force a particular resolver while also printing debugging information,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/go/doc/reader.go

    	i := 0
    	for _, m := range m {
    		// determine which methods to include
    		switch {
    		case m.Decl == nil:
    			// exclude conflict entry
    		case allMethods, m.Level == 0, !token.IsExported(removeStar(m.Orig)):
    			// forced inclusion, method not embedded, or method
    			// embedded but original receiver type not exported
    			list[i] = m
    			i++
    		}
    	}
    	list = list[0:i]
    	slices.SortFunc(list, func(a, b *Func) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/api/pod/util.go

    			if c.SecurityContext != nil && c.SecurityContext.ProcMount != nil {
    				// The ProcMount field was improperly forced to non-nil in 1.12.
    				// If the feature is disabled, and the existing object is not using any non-default values, and the ProcMount field is present in the incoming object, force to the default value.
    				// Note: we cannot force the field to nil when the feature is disabled because it causes a diff against previously persisted data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    //		pointer stored in the data word sym(SB), not a function named sym(SB).
    //		Encoding: same as above, but type = TYPE_INDIR.
    //
    //	$*$<mem>
    //		No longer used.
    //		On machines with actual SB registers, $*$<mem> forced the
    //		instruction encoding to use a full 32-bit constant, never a
    //		reference relative to SB.
    //
    //	$<floating point literal>
    //		Floating point constant value.
    //		Encoding:
    //			type = TYPE_FCONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    	// Sweeping must be complete before marking commences, so
    	// sweep any unswept spans. If this is a concurrent GC, there
    	// shouldn't be any spans left to sweep, so this should finish
    	// instantly. If GC was forced before the concurrent sweep
    	// finished, there may be spans to sweep.
    	for sweepone() != ^uintptr(0) {
    	}
    
    	// Make sure there aren't any outstanding sweepers left.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    	// The values below can be stored to g.stackguard0 to force
    	// the next stack check to fail.
    	// These are all larger than any real SP.
    
    	// Goroutine preemption request.
    	// 0xfffffade in hex.
    	stackPreempt = uintptrMask & -1314
    
    	// Thread is forking. Causes a split stack check failure.
    	// 0xfffffb2e in hex.
    	stackFork = uintptrMask & -1234
    
    	// Force a stack movement. Used for debugging.
    	// 0xfffffeed in hex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top