Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,017 for Avery (0.04 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    						return false
    					}
    				}
    				panic("cycle start not found")
    			}
    		}
    
    		// No cycle was found. Check the RHS of t.
    		// Every type added to nest is also added to path; thus every type that is in nest
    		// must also be in path (invariant). But not every type in path is in nest, since
    		// nest may be pruned (see below, *TypeParam case).
    		if !check.validType0(pos, t.Origin().fromRHS, append(nest, t), append(path, t)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    						return false
    					}
    				}
    				panic("cycle start not found")
    			}
    		}
    
    		// No cycle was found. Check the RHS of t.
    		// Every type added to nest is also added to path; thus every type that is in nest
    		// must also be in path (invariant). But not every type in path is in nest, since
    		// nest may be pruned (see below, *TypeParam case).
    		if !check.validType0(pos, t.Origin().fromRHS, append(nest, t), append(path, t)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/proxy/config/config.go

    			UpdateFunc: result.handleUpdateEndpointSlice,
    			DeleteFunc: result.handleDeleteEndpointSlice,
    		},
    		resyncPeriod,
    	)
    
    	return result
    }
    
    // RegisterEventHandler registers a handler which is called on every endpoint slice change.
    func (c *EndpointSliceConfig) RegisterEventHandler(handler EndpointSliceHandler) {
    	c.eventHandlers = append(c.eventHandlers, handler)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                        context.details.addVariant('very-special-variant', 'special-variant') {
                            attributes { attribute(Attribute.of('howspecial', String), 'very') }
                        }
                    }
                }
                configurations.conf {
                    attributes { attribute(Attribute.of('howspecial', String), 'very') }
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  5. src/runtime/runtime1.go

    package runtime
    
    import (
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Keep a cached value to make gotraceback fast,
    // since we call it on every call to gentraceback.
    // The cached value is a uint32 in which the low bits
    // are the "crash" and "all" settings and the remaining
    // bits are the traceback value (0 off, 1 on, 2 include system).
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    version = '1.0.0.GA'
    
    configurations {
        ...
    }
    ----
    
    Both `version` and `configurations {}` are part of link:{groovyDslPath}/org.gradle.api.Project.html[org.gradle.api.Project].
    
    This example reflects how every Groovy build script is backed by an implicit instance of `Project`. If you see an unqualified element and you don't know where it's defined, always check the `Project` API documentation to see if that's where it's coming from.
    
    [CAUTION]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    		// If the goal was to disable profiling for this thread, then the job's done.
    		return
    	}
    
    	// The period of the timer should be 1/Hz. For every "1/Hz" of additional
    	// work, the user should expect one additional sample in the profile.
    	//
    	// But to scale down to very small amounts of application work, to observe
    	// even CPU usage of "one tenth" of the requested period, set the initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager.go

    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    	// pod created.
    	AddPod(pod *v1.Pod)
    
    	// StopLivenessAndStartup handles stopping liveness and startup probes during termination.
    	StopLivenessAndStartup(pod *v1.Pod)
    
    	// RemovePod handles cleaning up the removed pod state, including terminating probe workers and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableCollection.java

     * of bugs and confusion.
     *
     * <h3>About <i>all</i> {@code Immutable-} collections</h3>
     *
     * <p>The remainder of this documentation applies to every public {@code Immutable-} type in this
     * package, whether it is a subtype of {@code ImmutableCollection} or not.
     *
     * <h4>Guarantees</h4>
     *
     * <p>Each makes the following guarantees:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// binary - which should always be true for any valid iptables installation
    	// (we use both in our iptables code later on anyway)
    	//
    	// We could explicitly check for all 3 every time to be sure, but that's likely not necessary,
    	// if we find one unless the host OS is badly broken we will find the others.
    	iptablesSaveBin := fmt.Sprintf("%s-save", iptablesBin)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top