- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,352 for addend (0.12 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
final StringBuilder buf = new StringBuilder((int) (content.length() * 1.3)); buf.append(prefix).append(1).append(':').append(values[0]); for (int i = 1; i < values.length; i++) { buf.append('\n').append(prefix).append(i + 1).append(':').append(values[i]); } return buf.toString(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
*/ @Override public String toString () { StringBuffer sb = new StringBuffer(); sb.append(isAllow() ? "Allow " : "Deny "); appendCol(sb, this.sid.toDisplayString(), 25); sb.append(" 0x").append(Hexdump.toHexString(this.access, 8)).append(' '); sb.append(isInherited() ? "Inherited " : "Direct "); appendCol(sb, getApplyToText(), 34); return sb.toString(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.4K bytes - Viewed (0) -
src/archive/tar/writer_test.go
for len(sa) > 0 && len(sb) > 0 { if sa[0] == sb[0] { ss = append(ss, identity+sa[0]) } else { ss = append(ss, uniqueA+sa[0]) ss = append(ss, uniqueB+sb[0]) } sa, sb = sa[1:], sb[1:] } for len(sa) > 0 { ss = append(ss, uniqueA+sa[0]) sa = sa[1:] } for len(sb) > 0 { ss = append(ss, uniqueB+sb[0]) sb = sb[1:] } return strings.Join(ss, "\n") }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 39.4K bytes - Viewed (0) -
cmd/bucket-replication-utils_gen.go
o = append(o, 0xa3, 0x72, 0x73, 0x74) o = msgp.AppendInt(o, int(z.ResyncStatus)) // string "fs" o = append(o, 0xa2, 0x66, 0x73) o = msgp.AppendInt64(o, z.FailedSize) // string "frc" o = append(o, 0xa3, 0x66, 0x72, 0x63) o = msgp.AppendInt64(o, z.FailedCount) // string "rs" o = append(o, 0xa2, 0x72, 0x73) o = msgp.AppendInt64(o, z.ReplicatedSize) // string "rrc"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 61.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Cut.java
} throw new AssertionError(); } @Override void describeAsLowerBound(StringBuilder sb) { sb.append('[').append(endpoint); } @Override void describeAsUpperBound(StringBuilder sb) { sb.append(endpoint).append(')'); } @Override C leastValueAbove(DiscreteDomain<C> domain) { return endpoint; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 12.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/layout/FlatRepositoryLayout.java
path.append(artifact.getArtifactId()).append(ARTIFACT_SEPARATOR).append(artifact.getVersion()); if (artifact.hasClassifier()) { path.append(ARTIFACT_SEPARATOR).append(artifact.getClassifier()); } if (artifactHandler.getExtension() != null && !artifactHandler.getExtension().isEmpty()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MoreCollectors.java
IllegalArgumentException multiples(boolean overflow) { StringBuilder sb = new StringBuilder().append("expected one element but was: <").append(element); for (Object o : extras) { sb.append(", ").append(o); } if (overflow) { sb.append(", ..."); } sb.append('>'); throw new IllegalArgumentException(sb.toString()); } void add(Object o) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
/** * */ public static final int FILE_NOTIFY_CHANGE_STREAM_WRITE = 0x00000800; // actions returned /** * File has been added */ public static final int FILE_ACTION_ADDED = 0x00000001; /** * File has been removed */ public static final int FILE_ACTION_REMOVED = 0x00000002; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.9K bytes - Viewed (0) -
CONTRIBUTING.md
feature. * Full new features (e.g., a new op implementing a cutting-edge algorithm) typically will live in [tensorflow/addons](https://github.com/tensorflow/addons) to get some airtime before a decision is made regarding whether they are to be migrated to the core. * As every PR requires several CPU/GPU hours of CI testing, we discourage
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0) -
callbacks/delete.go
) for _, ref := range rel.References { if ref.OwnPrimaryKey { foreignFields = append(foreignFields, ref.PrimaryKey) relForeignKeys = append(relForeignKeys, ref.ForeignKey.DBName) } else if ref.PrimaryValue != "" { queryConds = append(queryConds, clause.Eq{ Column: clause.Column{Table: rel.JoinTable.Table, Name: ref.ForeignKey.DBName}, Value: ref.PrimaryValue,
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Feb 25 02:48:23 UTC 2022 - 5.6K bytes - Viewed (0)