- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 777 for blank (0.03 sec)
-
tests/postgres_test.go
t.Fatalf("Failed to migrate for uuid default value, got error: %v", err) } harumph := Harumph{} if err := DB.Create(&harumph).Error; err == nil { t.Fatalf("should failed to create data, name can't be blank") } harumph = Harumph{Name: "jinzhu"} if err := DB.Create(&harumph).Error; err != nil { t.Fatalf("should be able to create data, but got %v", err) } var result Harumph
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Oct 08 09:16:32 UTC 2022 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashing.java
* * @author Jon Noack */ @GwtIncompatible @ElementTypesAreNonnullByDefault final class CompactHashing { private CompactHashing() {} /** Indicates blank table entries. */ static final byte UNSET = 0; /** Number of bits used to store the numbers of hash table bits (max 30). */ private static final int HASH_TABLE_BITS_MAX_BITS = 5;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 15:34:52 UTC 2024 - 7.1K bytes - Viewed (0) -
javadoc-stylesheet.css
} /* Fixes for a number of issues with the default stylesheet. */ /* Fixes huge font size in <pre>{@code} blocks. */ pre code { font-size:inherit; } /* Fixes issue with no blank line before <pre> in class-level Javadoc when the <pre> is preceded by a block of text with no <p>. */ .description .block pre { margin-top:1em;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 17 21:01:06 UTC 2013 - 11.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
final String url = urlQueue.getUrl(); if (StringUtil.isBlank(url)) { if (logger.isDebugEnabled()) { logger.debug("URL is a blank: {}", url); } return false; } final String sessionId = urlQueue.getSessionId(); if (super.exists(sessionId, url)) { return true; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchResults.jsp
<div class="mr-3"> <a class="link d-none d-sm-flex" href="${doc.url_link}" data-uri="${doc.url_link}" data-id="${doc.doc_id}" data-order="${s.index}" > <img src="${fe:url('/images/blank.png')}" alt="thumbnail" data-src="${fe:url('/thumbnail/')}?docId=${f:u(doc.doc_id)}&queryId=${f:u(queryId)}" class="thumbnail" > </a> </div> </c:if>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
doc/go_spec.html
the body of any nested function. </p> <h3 id="Blank_identifier">Blank identifier</h3> <p> The <i>blank identifier</i> is represented by the underscore character <code>_</code>. It serves as an anonymous placeholder instead of a regular (non-blank) identifier and has special meaning in <a href="#Declarations_and_scope">declarations</a>,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
private static final long NEXT_MASK = (1L << 32) - 1; /** Bitmask that selects the high 32 bits. */ private static final long HASH_MASK = ~NEXT_MASK; static final int DEFAULT_SIZE = 3; // used to indicate blank table entries static final int UNSET = -1; /* * The array fields below are not initialized directly in the constructor, but they're initialized * by init(), which the constructor calls. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 15K bytes - Viewed (0) -
src/cmd/asm/internal/asm/endtoend_test.go
} if len(output) > 0 && output[0] == want { output = output[1:] } else { t.Errorf("missing output: %q", want) } } for len(output) > 0 { if output[0] == "" { // spurious blank caused by Split on "\n" output = output[1:] continue } t.Errorf("unexpected output: %q", output[0]) output = output[1:] } // Checked printing. // Now check machine code layout.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Dec 07 18:42:59 UTC 2023 - 11.6K bytes - Viewed (0) -
fess-crawler/src/test/resources/extractor/eml/sample2.eml
fb51f268eeba54%26autoactions%3D1438260718%26uid%3D131239501%26nid%3D244%2B123&t=1&cn=ZmxleGlibGVfcmVjc18y&sig=faadb60a4f6304814f721157367df3076b5a98a2&iid=7c2e8db7f2e0464eb1fb51f268eeba54&uid=131239501&nid=244+123" target="blank" style="text-decoration:none;border-style:none;border:0;padding:0;margin:0;"><img src="https://pbs.twimg.com/profile_images/2997456682/ad8b6c8d2313f963ecbbced0fa1b40f9_reasonably_small.png" class="avatar_med" width="32" height="32" style="margin:0...
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Jan 16 07:50:35 UTC 2016 - 91.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final String fileName = artifact.getFileName(); final String url = artifact.getUrl(); if (StringUtil.isBlank(url)) { throw new PluginException("url is blank: " + artifact.getName()); } if (url.startsWith("http:") || url.startsWith("https:")) { try (final CurlResponse response = createCurlRequest(url).execute()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0)