Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for Book (0.16 sec)

  1. tests/soft_delete_test.go

    	}
    
    	book := SoftDeleteBook{Name: "jinzhu", Pages: 10}
    	DB.Save(&book)
    
    	var count int64
    	if DB.Model(&SoftDeleteBook{}).Where("name = ?", book.Name).Count(&count).Error != nil || count != 1 {
    		t.Errorf("Count soft deleted record, expects: %v, got: %v", 1, count)
    	}
    
    	var pages uint
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    # had bookmarks pointing to the base of each branch instead of the tip. 🤔
    # Either way, force the bookmarks we care about to match the original copy of
    # the repo.
    hg book v2 -r 3 --force
    hg book v2.3.4 -r 1 --force
    hg book v3 -r 5 --force
    
    hg log -G --debug
    
    hg tags
    cmp stdout .hg-tags
    
    	# 'hg convert' leaves an 'update tags' commit on the default branch, and that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    # 24
    hg tag --user 'Russ Cox <******@****.***>' --date '2018-07-18T21:26:33-04:00' -m 'Added tag v2.0.0 for changeset 814fce58e83a' -r 814fce58e83a v2.0.0
    
    hg book --delete v1
    hg book --delete v2
    hg book --force -r 16 master
    
    hg log -G --debug
    
    hg tags
    cmp stdout .hg-tags
    hg branches
    cmp stdout .hg-branches
    hg bookmarks
    cmp stdout .hg-bookmarks
    
    -- .hg-tags --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    		Link with C/C++ address sanitizer support.
    	-aslr
    		Enable ASLR for buildmode=c-shared on windows (default true).
    	-bindnow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsPagingResultBean.java

            this.builder = builder;
        }
    
        public String getQueryDsl() {
            return builder.toString();
        }
    
        public long getTook() {
            return took;
        }
    
        public void setTook(long took) {
            this.took = took;
        }
    
        public int getTotalShards() {
            return totalShards;
        }
    
        public void setTotalShards(int totalShards) {
            this.totalShards = totalShards;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/allcommon/EsPagingResultBean.java

            this.builder = builder;
        }
    
        public String getQueryDsl() {
            return builder.toString();
        }
    
        public long getTook() {
            return took;
        }
    
        public void setTook(long took) {
            this.took = took;
        }
    
        public int getTotalShards() {
            return totalShards;
        }
    
        public void setTotalShards(int totalShards) {
            this.totalShards = totalShards;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java

    import java.util.List;
    
    public class SuggestDeleteResponse {
        protected final List<Throwable> errors = new ArrayList<>();
        protected final long took;
    
        protected SuggestDeleteResponse(final List<Throwable> errors, final long took) {
            this.took = took;
            if (errors != null && !errors.isEmpty()) {
                this.errors.addAll(errors);
            }
        }
    
        public boolean hasError() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/allcommon/EsPagingResultBean.java

            this.builder = builder;
        }
    
        public String getQueryDsl() {
            return builder.toString();
        }
    
        public long getTook() {
            return took;
        }
    
        public void setTook(long took) {
            this.took = took;
        }
    
        public int getTotalShards() {
            return totalShards;
        }
    
        public void setTotalShards(int totalShards) {
            this.totalShards = totalShards;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

        protected final long took;
    
        protected SuggestIndexResponse(final int numberOfSuggestDocs, final int numberOfInputDocs, final List<Throwable> errors,
                final long took) {
            this.numberOfSuggestDocs = numberOfSuggestDocs;
            this.numberOfInputDocs = numberOfInputDocs;
            this.took = took;
            if (errors == null || errors.isEmpty()) {
                hasError = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. build-logic/packaging/src/test/kotlin/gradlebuild/packaging/GradleDistributionInstallTest.kt

                mkdir()
                File(this, "gradle").writeText("stub")
                File(this, "gradle.exe").writeText("stub")
            }
    
            assertFails("Install directory $target does not look like a Gradle installation. Cannot delete it to install.")
            assertTargetIsPreserved()
        }
    
        @Test
        fun `does not install to non-empty dir with empty lib`() {
            target.resolve("bin").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top