Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for avoiding (0.13 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/internal/services/PlatformJvmServices.java

                public void configure(ServiceRegistration serviceRegistration, JvmMetadataDetector globalJvmMetadataDetector) {
                    if (globalJvmMetadataDetector instanceof ConditionalInvalidation) {
                        // Avoiding generic-unchecked cast with this intermediate implementation that checks the types of the items:
                        ConditionalInvalidation<JvmInstallationMetadata> checkedInvalidationFromDetector =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/godebugs/table.go

    	{Name: "x509usepolicies", Package: "crypto/x509"},
    	{Name: "zipinsecurepath", Package: "archive/zip"},
    }
    
    // Lookup returns the Info with the given name.
    func Lookup(name string) *Info {
    	// binary search, avoiding import of sort.
    	lo := 0
    	hi := len(All)
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    		mid := All[m].Name
    		if name == mid {
    			return &All[m]
    		}
    		if name < mid {
    			hi = m
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirVisibilityChecker.kt

                explicitDispatchReceiver
            )
        }
    
        /**
         * [isVisibleByPsi] is a heuristic that decides visibility for most [KaFirPsiJavaClassSymbol]s without deferring to its FIR symbol,
         * thereby avoiding lazy construction of the FIR class. The visibility rules are tailored specifically for Java classes accessed from
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    !!! tip
        Some editors check for unused function parameters, and show them as errors.
    
        Using these `dependencies` in the *path operation decorator* you can make sure they are executed while avoiding editor/tooling errors.
    
        It might also help avoid confusion for new developers that see an unused parameter in your code and could think it's unnecessary.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    module whose go.mod file specifies `go 1.21`.
    
    ### Cgo {#cgo}
    
    <!-- go.dev/issue/66456 -->
    [cmd/cgo] supports the new `-ldflags` flag for passing flags to the C linker.
    The `go` command uses it automatically, avoiding "argument list too long"
    errors with a very large `CGO_LDFLAGS`.
    
    ### Trace {#trace}
    
    <!-- go.dev/issue/65316 -->
    The `trace` tool now better tolerates partially broken traces by attempting to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. fastapi/utils.py

    ) -> ModelField:
        if PYDANTIC_V2:
            return field
        # cloned_types caches already cloned types to support recursive models and improve
        # performance by avoiding unnecessary cloning
        if cloned_types is None:
            cloned_types = _CLONED_TYPES_CACHE
    
        original_type = field.type_
        if is_dataclass(original_type) and hasattr(original_type, "__pydantic_model__"):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.PathType;
    
    /**
     * Cache of {@link PathModularization} instances computed for given {@link Path} elements.
     * The cache is used for avoiding the need to reopen the same files many times when the
     * same dependency is used for different scope. For example a path used for compilation
     * is typically also used for tests.
     */
    class PathModularizationCache {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/runtime/coro.go

    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    		// We are avoiding the atomic load to keep this path
    		// as lightweight as absolutely possible.
    		// (The atomic load is free on x86 but not free elsewhere.)
    		next := c.gp
    		if next.ptr() == nil {
    			throw("coroswitch on exited coro")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	// The Establishing Controller will see the NamesAccepted condition when it arrives through the shared informer.
    	// At that time the API endpoint handler will serve the endpoint, avoiding a race
    	// which we had if we set Established to true here.
    	establishedCondition := apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Established,
    		Status:  apiextensionsv1.ConditionFalse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    					residual = true
    					continue
    				}
    				// Add cum weight to all nodes in stack, avoiding double counting.
    				if _, ok := seenNode[n]; !ok {
    					seenNode[n] = true
    					n.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, false)
    				}
    				// Update edge weights for all edges in stack, avoiding double counting.
    				if _, ok := seenEdge[nodePair{n, parent}]; !ok && parent != nil && n != parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top