Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 562 for pages (0.04 sec)

  1. src/runtime/mpagecache.go

    	// Set the search address to the last page represented by the cache.
    	// Since all of the pages in this block are going to the cache, and we
    	// searched for the first free page, we can confidently start at the
    	// next page.
    	//
    	// However, p.searchAddr is not allowed to point into unmapped heap memory
    	// unless it is maxSearchAddr, so make it the last page as opposed to
    	// the page after.
    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/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)
  3. 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)
  4. 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)
  5. src/runtime/mpallocbits.go

    // 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
    // page in this pallocBits. Each bit represents whether the page is in-use.
    func (b *pallocBits) pages64(i uint) uint64 {
    	return (*pageBits)(b).block64(i)
    }
    
    // allocPages64 allocates a 64-bit block of 64 pages aligned to 64 pages according
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * are compared to pages on other sites—it only lets the search engines know
         * which pages you deem most important for the crawlers.
         *
         * The default priority of a page is 0.5.
         *
         * Please note that the priority you assign to a page is not likely to
         * influence the position of your URLs in a search engine's result pages.
    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. src/runtime/mgcscavenge.go

    	}
    	sc.inUse += uint16(npages)
    	if sc.inUse == pallocChunkPages {
    		// There's nothing for the scavenger to take from here.
    		sc.setEmpty()
    	}
    }
    
    // free updates sc given that npages was freed in the corresponding chunk.
    func (sc *scavChunkData) free(npages uint, newGen uint32) {
    	if uint(sc.inUse) < npages {
    		print("runtime: inUse=", sc.inUse, " npages=", npages, "\n")
    		throw("allocated pages below zero?")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top