Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 258 for huge (0.13 sec)

  1. pkg/kubelet/kubelet_node_status.go

    			return false
    		}
    	}
    
    	return true
    }
    
    // reconcileHugePageResource will update huge page capacity for each page size and remove huge page sizes no longer supported
    func (kl *Kubelet) reconcileHugePageResource(initialNode, existingNode *v1.Node) bool {
    	requiresUpdate := updateDefaultResources(initialNode, existingNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/kube/client_factory.go

    var _ PartialFactory = &clientFactory{}
    
    // clientFactory partially implements the kubectl util.Factory, which is provides access to various k8s clients.
    // The full Factory can be built with MakeKubeFactory.
    // This split is to avoid huge dependencies.
    type clientFactory struct {
    	clientConfig clientcmd.ClientConfig
    
    	expander lazy.Lazy[meta.RESTMapper]
    	mapper   lazy.Lazy[meta.ResettableRESTMapper]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		if len(args) >= 2 {
    			strCost := uint64(math.Ceil((1.0 + float64(actualSize(args[0]))) * common.StringTraversalCostFactor))
    			// We don't know how many expressions are in the regex, just the string length (a huge
    			// improvement here would be to somehow get a count the number of expressions in the regex or
    			// how many states are in the regex state machine and use that to measure regex cost).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    // Used to construct an artificially large array type when reading an
    // item from the object file relocs section or aux sym section (needs
    // to work on 32-bit as well as 64-bit). See issue 41621.
    const huge = (1<<31 - 1) / RelocSize
    
    // Referenced symbol name.
    //
    // Serialized format:
    //
    //	RefName struct {
    //	   Sym  symRef
    //	   Name string
    //	}
    type RefName [RefNameSize]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/runtime/mem.go

    // with pages of a larger size transparently.
    func sysNoHugePage(v unsafe.Pointer, n uintptr) {
    	sysNoHugePageOS(v, n)
    }
    
    // sysHugePageCollapse attempts to immediately back the provided memory region
    // with huge pages. It is best-effort and may fail silently.
    func sysHugePageCollapse(v unsafe.Pointer, n uintptr) {
    	sysHugePageCollapseOS(v, n)
    }
    
    // sysFree transitions a memory region from any state to None. Therefore, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. src/math/cmplx/tan.go

    // "Elementary Function Evaluation:  Algorithms and Implementation"
    // Jean-Michel Muller, 1997.
    // For very large arguments it uses Payne-Hanek range reduction based on:
    // "ARGUMENT REDUCTION FOR HUGE ARGUMENTS: Good to the Last Bit"
    // K. C. Ng et al, March 24, 1992.
    func reducePi(x float64) float64 {
    	// reduceThreshold is the maximum value of x where the reduction using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  7. src/math/expm1.go

    	switch {
    	case IsInf(x, 1) || IsNaN(x):
    		return x
    	case IsInf(x, -1):
    		return -1
    	}
    
    	absx := x
    	sign := false
    	if x < 0 {
    		absx = -absx
    		sign = true
    	}
    
    	// filter out huge argument
    	if absx >= Ln2X56 { // if |x| >= 56 * ln2
    		if sign {
    			return -1 // x < -56*ln2, return -1
    		}
    		if absx >= Othreshold { // if |x| >= 709.78...
    			return Inf(1)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/base/base.go

    	//    will result in the desired goal. The logging code checks that the
    	//    resulting goal is correct.
    
    	// There's a small risk that the finalizer will be slow to run after a GC
    	// that expands the goal to a huge value, and that this will lead to
    	// out-of-memory.  This doesn't seem to happen; in experiments on a variety
    	// of machines with a variety of extra loads to disrupt scheduling, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. javadoc-stylesheet.css

    }
    .block {
        display:block;
        margin:3px 0 0 0;
    }
    .strong {
        font-weight:bold;
    }
    
    /*
     Fixes for a number of issues with the default stylesheet.
     */
    
    /* Fixes huge font size in <pre>{@code} blocks. */
    pre code {
        font-size:inherit;
    }
    
    /*
     Fixes issue with no blank line before <pre> in class-level Javadoc
     when the <pre> is preceded by a block of text with no <p>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  10. pkg/api/pod/util.go

    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // usesIndivisibleHugePagesValues returns true if the one of the containers uses non-integer multiple
    // of huge page unit size
    func usesIndivisibleHugePagesValues(podSpec *api.PodSpec) bool {
    	foundIndivisibleHugePagesValue := false
    	VisitContainers(podSpec, AllContainers, func(c *api.Container, containerType ContainerType) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top