- Sort Score
- Result 10 results
- Languages All
Results 1881 - 1890 of 2,283 for else (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
if (content == null) { return StringUtil.EMPTY; // empty } String subContent; if (content.length() < maxWidth * 2) { subContent = content; } else { subContent = content.substring(0, maxWidth * 2); } final int[] spaceChars = getSpaceChars(); try (final Reader reader = new StringReader(subContent)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
TesterRequirements declaredRequirements = buildDeclaredTesterRequirements(testerClass); Class<?> baseClass = testerClass.getSuperclass(); if (baseClass == null) { return declaredRequirements; } else { TesterRequirements clonedBaseRequirements = new TesterRequirements(getTesterRequirements(baseClass)); return incorporateRequirements(clonedBaseRequirements, declaredRequirements, testerClass); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 05 22:05:05 UTC 2024 - 12.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ContiguousSet.java
} } catch (NoSuchElementException e) { throw new IllegalArgumentException(e); } boolean empty; if (effectiveRange.isEmpty()) { empty = true; } else { /* * requireNonNull is safe because the effectiveRange operations above would have thrown or * effectiveRange.isEmpty() would have returned true. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 9.9K bytes - Viewed (0) -
cmd/site-replication-utils.go
return } sm.Lock() defer sm.Unlock() s := sm.resyncStatus[resyncID] if r.ReplicatedCount > 0 { s.ReplicatedCount++ s.ReplicatedSize += r.ReplicatedSize } else { s.FailedCount++ s.FailedSize += r.FailedSize } s.Bucket = r.Bucket s.Object = r.Object s.LastUpdate = UTCNow() sm.resyncStatus[resyncID] = s }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 8.9K bytes - Viewed (0) -
docs/en/docs/tutorial/body.md
* Generate <a href="https://json-schema.org" class="external-link" target="_blank">JSON Schema</a> definitions for your model, you can also use them anywhere else you like if it makes sense for your project. * Those schemas will be part of the generated OpenAPI schema, and used by the automatic documentation <abbr title="User Interfaces">UIs</abbr>. ## Automatic docs
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:58:19 UTC 2024 - 6.6K bytes - Viewed (0) -
docs/lambda/README.md
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0) -
tensorflow/c/c_api_experimental_test.cc
if (input_shape.has_value()) { TF_ShapeAndTypeListSetShape(input_shapes, i, input_shape->data(), input_shape->size()); } else { TF_ShapeAndTypeListSetUnknownShape(input_shapes, i); } } TF_ShapeAndTypeList* output_shapes; TFE_InferShapes(op, input_shapes, input_tensors.empty()
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 17 22:27:52 UTC 2023 - 13.1K bytes - Viewed (0) -
istioctl/cmd/root.go
Short: "Legacy command variants", } rootCmd.AddCommand(legacyCmd) for _, c := range xdsBasedTroubleshooting { rootCmd.AddCommand(c) } debugCmdAttachmentPoint = legacyCmd } else { debugCmdAttachmentPoint = rootCmd } for _, c := range xdsBasedTroubleshooting { experimentalCmd.AddCommand(c) } for _, c := range troubleshootingCommands { debugCmdAttachmentPoint.AddCommand(c)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 05 02:08:47 UTC 2024 - 9.6K bytes - Viewed (0) -
schema/relationship_test.go
) func checkStructRelation(t *testing.T, data interface{}, relations ...Relation) { if s, err := schema.Parse(data, &sync.Map{}, schema.NamingStrategy{}); err != nil { t.Errorf("Failed to parse schema, got error %v", err) } else { for _, rel := range relations { checkSchemaRelation(t, s, rel) } } } func TestBelongsToOverrideForeignKey(t *testing.T) { type Profile struct { gorm.Model Name string }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 25.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
for (final String role : roles) { if (StringUtil.isNotEmpty(role)) { roleSet.add(role); } } } } else { final String[] roles = rolesStr.split(roleSeparator); for (final String role : roles) { if (StringUtil.isNotEmpty(role)) { roleSet.add(role); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 25 01:48:41 UTC 2024 - 11.5K bytes - Viewed (0)