Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,715 for forced (0.16 sec)

  1. src/runtime/metrics/description.go

    		Cumulative: true,
    	},
    	{
    		Name:        "/gc/heap/frees:bytes",
    		Description: "Cumulative sum of heap memory freed by the garbage collector.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name: "/gc/heap/frees:objects",
    		Description: "Cumulative count of heap allocations whose storage was freed " +
    			"by the garbage collector. " +
    			"Note that this does not include tiny objects as defined by " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/cgo/internal/testerrors/ptr_test.go

    // ptrTest is the tests without the boilerplate.
    type ptrTest struct {
    	name      string   // for reporting
    	c         string   // the cgo comment
    	c1        string   // cgo comment forced into non-export cgo file
    	imports   []string // a list of imports
    	support   string   // supporting functions
    	body      string   // the body of the main function
    	extra     []extra  // extra files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K 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. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    The rule provided will enforce just this: any time version `1.2` is encountered it will be replaced with `1.2.1`.
    Note that this is different from a forced version as described above, in that any other versions of this module would not be affected.
    This means that the 'newest' conflict resolution strategy would still select version `1.3` if this version was also pulled transitively.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. src/net/dial.go

    	mptcpEnabled
    	mptcpDisabled
    )
    
    func (m *mptcpStatus) get() bool {
    	switch *m {
    	case mptcpEnabled:
    		return true
    	case mptcpDisabled:
    		return false
    	}
    
    	// If MPTCP is forced via GODEBUG=multipathtcp=1
    	if multipathtcp.Value() == "1" {
    		multipathtcp.IncNonDefault()
    
    		return true
    	}
    
    	return defaultMPTCPEnabled
    }
    
    func (m *mptcpStatus) set(use bool) {
    	if use {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    This declaration is effectively transitive and so will apply to the dependency graph of your consumers.
    Unfortunately they will have to use `exclude` if they happen to disagree with one of the forced versions.
    Instead, if your reusable software component has a strong opinion on some third party dependency versions, consider using a <<rich_versions.adoc#sec:strict-version,rich version declaration>> with a `strictly`.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top