Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for does_not_exist (0.44 seconds)

  1. generics_withresult_test.go

    	if r.RowsAffected <= 0 {
    		t.Fatalf("expected RowsAffected > 0, got %d", r.RowsAffected)
    	}
    
    	u2 := withResultUser{Name: "with-result-fail"}
    	r2 := gorm.WithResult()
    	if err := gorm.G[withResultUser](db, r2).Table("does_not_exist").Create(ctx, &u2); err == nil {
    		t.Fatalf("expected error for missing table, got nil")
    	}
    	if r2.Error == nil {
    		t.Fatalf("expected result error to be set for missing table")
    	}
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:34:24 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  2. guava-gwt/pom.xml

              <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. -->
              <sourcepath>doesnotexist</sourcepath>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. android/pom.xml

                          (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                      -->
                      <arg>-sourcepath</arg>
                      <arg>doesnotexist</arg>
                    </compilerArgs>
                  </configuration>
                </execution>
                <execution>
                  <id>default-testCompile</id>
                  <configuration>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 17 19:12:41 GMT 2026
    - 26.9K bytes
    - Click Count (0)
Back to Top