Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for pages64 (0.12 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

            this.antGroovydoc = antGroovydoc;
        }
    
        /**
         * Returns whether to create class and package usage pages.
         */
        @Input
        public boolean isUse() {
            return use;
        }
    
        /**
         * Sets whether to create class and package usage pages.
         */
        public void setUse(boolean use) {
            this.use = use;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. doc/godebug.md

    Go 1.22 changed how the runtime interacts with transparent huge pages on Linux.
    In particular, a common default Linux kernel configuration can result in
    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    [`disablethp` setting](/pkg/runtime#hdr-Environment_Variable).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/metrics.go

    	// MemoryManagerPinningRequestTotal tracks the number of times the pod spec required the memory manager to pin memory pages
    	MemoryManagerPinningRequestTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           MemoryManagerPinningRequestsTotalKey,
    			Help:           "The number of memory pages allocations which required pinning.",
    			StabilityLevel: metrics.ALPHA,
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            someFailedClassDetails.assertLinksTo("classes/org.gradle.failing.SomeIgnoredSomePassedSomeFailed.html");
    
            where:
            numThreads << [1, 4]
        }
    
        def "generates report with aggregated package pages - #numThreads parallel thread(s)"() {
            given:
            report = reportWithMaxThreads(numThreads)
            def testTestResults = failingBuildResults()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cadvisor_stats_provider.go

    		// associated cgroup. We ignore them to ensure we do not get duplicate
    		// entries in our summary. For details on .mount units:
    		// http://man7.org/linux/man-pages/man5/systemd.mount.5.html
    		if strings.HasSuffix(key, ".mount") {
    			continue
    		}
    		// Build the Pod key if this container is managed by a Pod
    		if !isPodManagedContainer(&cinfo) {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. pkg/volume/emptydir/empty_dir.go

    		var err error
    		mediumPageSize, err = v1helper.HugePageSizeFromMedium(medium)
    		if err != nil {
    			return "", err
    		}
    	}
    
    	// In some rare cases init containers can also consume Huge pages
    	for _, container := range append(pod.Spec.Containers, pod.Spec.InitContainers...) {
    		// We can take request because limit and requests must match.
    		for requestName := range container.Resources.Requests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        }
    
        public StandardJavadocDocletOptions noSince() {
            return noSince(true);
        }
    
        /**
         * -notree
         * <p>
         * Omits the class/interface hierarchy pages from the generated docs.
         * These are the pages you reach using the "Tree" button in the navigation bar.
         * The hierarchy is produced by default.
         */
        @Input
        public boolean isNoTree() {
            return noTree.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/podcgroupns.go

    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    // this function will return an error if every cgroup does not meet that format.
    //
    // For more information, see:
    //   - http://man7.org/linux/man-pages/man7/cgroups.7.html
    //   - https://www.kernel.org/doc/Documentation/cgroup-v2.txt
    func GetCgroups(procCgroupData bytes.Buffer) ([]Cgroup, error) {
    	reader := bytes.NewReader(procCgroupData.Bytes())
    	var cgroups []Cgroup
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    			// if not full pages are received, so we should see significantly less
    			// than 1000 pages (which would be result of talking to etcd with page size
    			// copied from pred.Limit).
    			// The expected number of calls is n+1 where n is the smallest n so that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge_test.go

    				min:   1,
    				max:   3, // Make it so that max would have us try to break the huge page.
    				want:  BitRange{0, bits + 2},
    			}
    			if 3*bits < PallocChunkPages {
    				// We need at least 3 huge pages in a chunk for this test to make sense.
    				tests["PreserveHugePageMiddle"] = test{
    					alloc: []BitRange{{0, bits - 10}, {2*bits + 10, PallocChunkPages - (2*bits + 10)}},
    					min:   1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top