Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isDryRun (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. callbacks/create.go

    			db.Statement.AddClauseIfNotExists(clause.Insert{})
    			db.Statement.AddClause(ConvertToCreateValues(db.Statement))
    
    			db.Statement.Build(db.Statement.BuildClauses...)
    		}
    
    		isDryRun := !db.DryRun && db.Error == nil
    		if !isDryRun {
    			return
    		}
    
    		ok, mode := hasReturning(db, supportReturning)
    		if ok {
    			if c, ok := db.Statement.Clauses["ON CONFLICT"]; ok {
    				onConflict, _ := c.Expression.(clause.OnConflict)
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Tue Jul 29 11:06:13 GMT 2025
    - 13K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

        public FileCollection getChangelogs() {
            return changelogs;
        }
    
        public void setChangelogs(FileCollection files) {
            this.changelogs = files;
        }
    
        @Internal
        public boolean isDryRun() {
            return dryRun;
        }
    
        @Option(option = "dry-run", description = "Find and print files to prune but don't actually delete them")
        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 6.6K bytes
    - Click Count (0)
Back to Top