Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 162 for pages64 (0.22 sec)

  1. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- end }}
            securityContext:
              allowPrivilegeEscalation: false
              privileged: false
              capabilities:
                drop:
                - ALL
                add: # See https://man7.org/linux/man-pages/man7/capabilities.7.html
                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_64bit.go

    	heapAddrBits - summaryL0Bits - 4*summaryLevelBits,
    }
    
    // levelLogPages is log2 the maximum number of runtime pages in the address space
    // a summary in the given level represents.
    //
    // The leaf level always represents exactly log2 of 1 chunk's worth of pages.
    var levelLogPages = [summaryLevels]uint{
    	logPallocChunkPages + 4*summaryLevelBits,
    	logPallocChunkPages + 3*summaryLevelBits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue15002.go

    import (
    	"fmt"
    	"syscall"
    )
    
    // Use global variables so the compiler
    // doesn't know that they are constants.
    var p = syscall.Getpagesize()
    var zero = 0
    var one = 1
    
    func main() {
    	// Allocate 2 pages of memory.
    	b, err := syscall.Mmap(-1, 0, 2*p, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_ANON|syscall.MAP_PRIVATE)
    	if err != nil {
    		panic(err)
    	}
    	// Mark the second page as faulting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/internal/poll/copy_file_range_linux.go

    	major, minor := unix.KernelVersion()
    	// copy_file_range(2) is broken in various ways on kernels older than 5.3,
    	// see https://go.dev/issue/42400 and
    	// https://man7.org/linux/man-pages/man2/copy_file_range.2.html#VERSIONS
    	return major > 5 || (major == 5 && minor >= 3)
    })
    
    const maxCopyFileRangeRound = 1 << 30
    
    // CopyFileRange copies at most remain bytes of data from src to dst, using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    	// ManPageInfo provides extra information necessary when emitting man pages.
    	ManPageInfo doc.GenManHeader
    
    	// Predicates to use to filter environment variables and metrics. If not set, all items will be selected.
    	Predicates Predicates
    }
    
    // EmitCollateral produces a set of collateral files for a CLI command. You can
    // select to emit markdown to describe a command's function, man pages, YAML
    // descriptions, and bash completion files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    		for i := range slow.BySize {
    			slow.BySize[i].Mallocs = bySize[i].Mallocs
    			slow.BySize[i].Frees = bySize[i].Frees
    		}
    
    		for i := mheap_.pages.start; i < mheap_.pages.end; i++ {
    			chunk := mheap_.pages.tryChunkOf(i)
    			if chunk == nil {
    				continue
    			}
    			pg := chunk.scavenged.popcntRange(0, pallocChunkPages)
    			slow.HeapReleased += uint64(pg) * pageSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/templates/productpage.html

                        <th scope="col" class="whitespace-nowrap px-2 py-3.5 text-left text-sm font-semibold text-gray-900">Pages</th>
                        <th scope="col" class="whitespace-nowrap px-2 py-3.5 text-left text-sm font-semibold text-gray-900">Type</th>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top