Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for pages64 (0.23 sec)

  1. src/runtime/mpagecache.go

    // pageCache represents a per-p cache of pages the allocator can
    // allocate from without a lock. More specifically, it represents
    // a pageCachePages*pageSize chunk of memory with 0 or more free
    // pages in it.
    type pageCache struct {
    	base  uintptr // base address of the chunk
    	cache uint64  // 64-bit bitmap representing free pages (1 means free)
    	scav  uint64  // 64-bit bitmap representing scavenged pages (1 means scavenged)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits.go

    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    }
    
    // pages64 returns a 64-bit bitmap representing a block of 64 pages aligned
    // to 64 pages. The returned block of pages is the one containing the i'th
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. util/update_snapshot_docs.sh

    cd $HOME
    git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pages > /dev/null
    cd gh-pages
    
    git config --global user.name "$GITHUB_ACTOR"
    git config --global user.email "$******@****.***"
    
    ./updaterelease.sh snapshot
    
    git push -fq origin gh-pages > /dev/null
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 16 16:48:28 UTC 2021
    - 439 bytes
    - Viewed (0)
  4. tests/soft_delete_test.go

    		t.Errorf("Count soft deleted record, expects: %v, got: %v", 1, count)
    	}
    
    	var pages uint
    	if DB.Model(&SoftDeleteBook{}).Select("pages").Where("name = ?", book.Name).Scan(&pages).Error != nil || pages != book.Pages {
    		t.Errorf("Pages soft deleted record, expects: %v, got: %v", 0, pages)
    	}
    
    	if err := DB.Delete(&book).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/memory_windows.go

    	AllocationProtect uint32
    	PartitionId       uint16
    	// The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    	// The access protection of the pages in the region.
    	Protect uint32
    	// The type of pages in the region.
    	Type uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
  6. internal/s3select/sql/jsondata/books.json

                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
                "publisher": "Dodd Mead and Company (New York)",
                "type": "Hardcover",
                "pages": 302
            },
            {
                "year": 2011,
                "publisher": "Harper Collins",
                "type": "Paperback",
                "pages": 265
            }
        ]
    }
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * when making decisions, they may crawl pages marked "hourly" less
         * frequently than that, and they may crawl pages marked "yearly" more
         * frequently than that. Crawlers may periodically crawl pages marked
         * "never" so that they can handle unexpected changes to those pages.
         */
        private String changefreq;
    
        /**
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. mkdocs.yml

            'r8_proguard.md': 'features/r8_proguard.md'
            # Redirect all Security pages to security/*
            'security.md': 'security/security.md'
            'security_providers.md': 'security/security_providers.md'
            'tls_configuration_history.md': 'security/tls_configuration_history.md'
            # Redirect all changelog pages to changelog/*
            'changelog.md': 'changelogs/changelog.md'
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/runtime/mem_windows.go

    		return
    	}
    
    	// Decommit failed. Usual reason is that we've merged memory from two different
    	// VirtualAlloc calls, and Windows will only let each VirtualFree handle pages from
    	// a single VirtualAlloc. It is okay to specify a subset of the pages from a single alloc,
    	// just not pages from multiple allocs. This is a rare case, arising only when we're
    	// trying to give memory back to the operating system, which happens on a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Scavenging free pages.
    //
    // This file implements scavenging (the release of physical pages backing mapped
    // memory) of free and unused pages in the heap as a way to deal with page-level
    // fragmentation and reduce the RSS of Go applications.
    //
    // Scavenging in Go happens on two fronts: there's the background
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top