Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for grandparent (0.22 sec)

  1. src/runtime/extern.go

    	cgocheck mode can be enabled using GOEXPERIMENT (which
    	requires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.
    
    	disablethp: setting disablethp=1 on Linux disables transparent huge pages for the heap.
    	It has no effect on other platforms. disablethp is meant for compatibility with versions
    	of Go before 1.21, which stopped working around a Linux kernel default that can result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    /** Remove the gray background color from active links in IE 10. */
    a {
    	background: transparent;
    }
    
    /** Address `outline` inconsistency between Chrome and other browsers. */
    a:focus {
    	outline: thin dotted;
    }
    
    /** Improve readability when focused and also mouse hovered in all browsers. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/print/print.go

    	// Interfaces can be used with any verb.
    	var iface interface {
    		ToTheMadness() bool // Method ToTheMadness usually returns false
    	}
    	fmt.Printf("%f", iface) // ok: fmt treats interfaces as transparent and iface may well have a float concrete type
    	// Can't print a function.
    	Printf("%d", someFunction) // ERROR "Printf format %d arg someFunction is a func value, not called"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Using a catalog will not have any kind of consequence on downstream consumers: it's transparent to them.
    
    A platform is a more heavyweight construct: it's a component of a dependency graph, like any other library.
    If you depend on a platform, that platform is itself a component in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    				ExactBalance: &listener.Listener_ConnectionBalanceConfig_ExactBalance{},
    			},
    		}
    	}
    	if !bindToPort && lb.node.GetInterceptionMode() == model.InterceptionTproxy {
    		l.Transparent = proto.BoolTrue
    	}
    
    	accessLogBuilder.setListenerAccessLog(lb.push, lb.node, l, istionetworking.ListenerClassSidecarInbound)
    	l.FilterChains = chains
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    :transparent;color:#333;border-color:#999}.uk-button-primary{background-color:#1e87f0;color:#fff;border:1px solid transparent}.uk-button-primary:focus,.uk-button-primary:hover{background-color:#0f7ae5;color:#fff}.uk-button-primary.uk-active,.uk-button-primary:active{background-color:#0e6dcd;color:#fff}.uk-button-secondary{background-color:#222;color:#fff;border:1px solid transparent}.uk-button-secondary:focus,.uk-button-secondary:hover{background-color:#151515;color:#fff}.uk-button-secondary.uk-...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Using method `NamedDomainObjectContainer<T>.invoke(kotlin.Function1)`
    
    Gradle Kotlin DSL extensions have been changed to favor Gradle's `Action<T>` type over Kotlin function types.
    
    While the change should be transparent to Kotlin clients, Java clients calling Kotlin DSL extensions need to be updated to use the `Action<T>` APIs.
    
    [[changes_6.7]]
    == Upgrading from 6.6 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. src/image/draw/draw.go

    			ma := uint32(m)
    			if mask != nil {
    				_, _, _, ma = mask.At(mx, my).RGBA()
    			}
    			switch {
    			case ma == 0:
    				if op == Over {
    					// No-op.
    				} else {
    					dst.Set(x, y, color.Transparent)
    				}
    			case ma == m && op == Src:
    				dst.Set(x, y, src.At(sx, sy))
    			default:
    				sr, sg, sb, sa := src.At(sx, sy).RGBA()
    				if op == Over {
    					dr, dg, db, da := dst.At(x, y).RGBA()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    	// everything is going to be used.
    	//
    	// This also seems to make a massive difference as to whether or
    	// not Linux decides to back this memory with transparent huge
    	// pages. There's latency involved in this zeroing, but the hugepage
    	// gains are almost always worth it. Note: it's important that we
    	// clear even if it's freshly mapped and we know there's no point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    User code is still segregated into a separate classloader to isolate it from the Gradle runtime.
    This should be a transparent change for tasks using the worker API, but previous versions of Gradle mixed user code and Gradle internals in the worker process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top