Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for does_not_exist (0.05 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. src/test/java/jcifs/smb1/util/MimeMapTest.java

                assertEquals("application/octet-stream", mimeMap.getMimeType("notfound"));
                assertEquals("application/octet-stream", mimeMap.getMimeType("doesnotexist"));
            }
    
            @Test
            @DisplayName("Should handle case insensitive extensions")
            void testCaseInsensitiveExtensions() throws IOException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  3. futures/failureaccess/pom.xml

                        (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                    -->
                    <arg>-sourcepath</arg>
                    <arg>doesnotexist</arg>
                  </compilerArgs>
                </configuration>
              </execution>
              <execution>
                <id>compile-java9</id>
                <goals>
                  <goal>compile</goal>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Oct 02 19:27:26 GMT 2025
    - 5.4K bytes
    - Click Count (0)
Back to Top