Home
last modified time | relevance | path

Searched refs:FIELD_SEPARATOR (Results 1 – 25 of 37) sorted by relevance

12

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/
H A DCheckpointSignature.java35 private static final String FIELD_SEPARATOR = ":"; field in CheckpointSignature
51 String[] fields = str.split(FIELD_SEPARATOR); in CheckpointSignature()
108 return String.valueOf(layoutVersion) + FIELD_SEPARATOR in toString()
109 + String.valueOf(namespaceID) + FIELD_SEPARATOR in toString()
110 + String.valueOf(cTime) + FIELD_SEPARATOR in toString()
111 + String.valueOf(mostRecentCheckpointTxId) + FIELD_SEPARATOR in toString()
112 + String.valueOf(curSegmentTxId) + FIELD_SEPARATOR in toString()
113 + clusterID + FIELD_SEPARATOR in toString()
/dports/net/p5-Net-HL7/Net-HL7-0.76/lib/Net/HL7/
H A DMessage.pm114 $self->{FIELD_SEPARATOR} = $Net::HL7::FIELD_SEPARATOR;
141 $self->{FIELD_SEPARATOR} = $fldSep;
153 my @fields = split('\\' . $self->{FIELD_SEPARATOR}, $segments[$i]);
205 unshift(@fields, $self->{FIELD_SEPARATOR});
364 $self->{FIELD_SEPARATOR} = $segment->getField(1);
448 my $segStr = $seg->getName() . $self->{FIELD_SEPARATOR};
458 $segStr .= $self->{FIELD_SEPARATOR};
/dports/devel/hadoop/hadoop-1.2.1/src/hdfs/org/apache/hadoop/hdfs/server/namenode/
H A DCheckpointSignature.java32 private static final String FIELD_SEPARATOR = ":"; field in CheckpointSignature
45 String[] fields = str.split(FIELD_SEPARATOR); in CheckpointSignature()
55 return String.valueOf(layoutVersion) + FIELD_SEPARATOR in toString()
56 + String.valueOf(namespaceID) + FIELD_SEPARATOR in toString()
57 + String.valueOf(cTime) + FIELD_SEPARATOR in toString()
58 + String.valueOf(editsTime) + FIELD_SEPARATOR in toString()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/extension/custompages/
H A DDefaultCustomPage.java36 private static final String FIELD_SEPARATOR = ";"; field in DefaultCustomPage
238 .append(FIELD_SEPARATOR); in encode()
239 encodedCP.append(cp.getPageMatcherLocation().getId()).append(FIELD_SEPARATOR); in encode()
240 encodedCP.append(cp.isRegex()).append(FIELD_SEPARATOR); in encode()
241 encodedCP.append(cp.getType().getId()).append(FIELD_SEPARATOR); in encode()
242 encodedCP.append(cp.isEnabled()).append(FIELD_SEPARATOR); in encode()
257 String[] pieces = encodedString.split(FIELD_SEPARATOR, -1); in decode()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/users/
H A DUser.java49 private static final String FIELD_SEPARATOR = ";"; field in User
308 out.append(user.id).append(FIELD_SEPARATOR); in encode()
309 out.append(user.isEnabled()).append(FIELD_SEPARATOR); in encode()
310 out.append(Base64.encodeBase64String(user.name.getBytes())).append(FIELD_SEPARATOR); in encode()
312 .append(FIELD_SEPARATOR); in encode()
313 out.append(user.authenticationCredentials.encode(FIELD_SEPARATOR)); in encode()
341 String[] pieces = encodedString.split(FIELD_SEPARATOR, -1); in decode()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/authentication/
H A DUsernamePasswordAuthenticationCredentials.java65 private static String FIELD_SEPARATOR = "~"; field in UsernamePasswordAuthenticationCredentials
104 if (FIELD_SEPARATOR.equals(parentStringSeparator)) { in encode()
107 + FIELD_SEPARATOR in encode()
115 out.append(Base64.encodeBase64String(username.getBytes())).append(FIELD_SEPARATOR); in encode()
116 out.append(Base64.encodeBase64String(password.getBytes())).append(FIELD_SEPARATOR); in encode()
128 String[] pieces = encodedCredentials.split(FIELD_SEPARATOR); in decode()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/readorientation/
H A DF1R2FilterUtils.java26 final String[] parts = label.split(F1R2FilterConstants.FIELD_SEPARATOR); in labelToTriplet()
34 …return String.join(F1R2FilterConstants.FIELD_SEPARATOR, context, altAllele.toString(), type.toStri… in tripletToLabel()
H A DF1R2FilterConstants.java36 static final String FIELD_SEPARATOR = "_"; field in F1R2FilterConstants
/dports/textproc/groff/groff-1.22.4/src/preproc/refer/
H A Dref.cpp34 const char FIELD_SEPARATOR = '\0'; variable
98 f += FIELD_SEPARATOR; in reference()
500 while (start < end && *start != FIELD_SEPARATOR) in sortify_field()
643 const char *name_end = (char *)memchr(ptr, FIELD_SEPARATOR, end - ptr); in abbreviate_names()
650 result += FIELD_SEPARATOR; in abbreviate_names()
683 const char *name_end = (char *)memchr(ptr, FIELD_SEPARATOR, end - ptr); in reverse_names()
690 result += FIELD_SEPARATOR; in reverse_names()
703 if (ptr[j] == FIELD_SEPARATOR) in join_fields()
710 if (ptr[j] == FIELD_SEPARATOR) { in join_fields()
1024 start = (char *)memchr(start, FIELD_SEPARATOR, *endp - start); in nth_field()
[all …]
/dports/japanese/groff/groff-1.18.1.1/src/preproc/refer/
H A Dref.cc35 const char FIELD_SEPARATOR = '\0'; variable
99 f += FIELD_SEPARATOR; in reference()
499 while (start < end && *start != FIELD_SEPARATOR) in sortify_field()
642 const char *name_end = (char *)memchr(ptr, FIELD_SEPARATOR, end - ptr); in abbreviate_names()
649 result += FIELD_SEPARATOR; in abbreviate_names()
682 const char *name_end = (char *)memchr(ptr, FIELD_SEPARATOR, end - ptr); in reverse_names()
689 result += FIELD_SEPARATOR; in reverse_names()
702 if (ptr[j] == FIELD_SEPARATOR) in join_fields()
709 if (ptr[j] == FIELD_SEPARATOR) { in join_fields()
1023 start = (char *)memchr(start, FIELD_SEPARATOR, *endp - start); in nth_field()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/python/mozbuild/mozpack/
H A Dmanifests.py92 FIELD_SEPARATOR = "\x1f" variable in InstallManifest
134 fields = line.split(self.FIELD_SEPARATOR)
257 % self.FIELD_SEPARATOR.join(
266 % self.FIELD_SEPARATOR.join(six.ensure_text(p) for p in parts)
/dports/www/firefox/firefox-99.0/python/mozbuild/mozpack/
H A Dmanifests.py92 FIELD_SEPARATOR = "\x1f" variable in InstallManifest
134 fields = line.split(self.FIELD_SEPARATOR)
257 % self.FIELD_SEPARATOR.join(
266 % self.FIELD_SEPARATOR.join(six.ensure_text(p) for p in parts)
/dports/lang/spidermonkey60/firefox-60.9.0/python/mozbuild/mozpack/
H A Dmanifests.py91 FIELD_SEPARATOR = '\x1f' variable in InstallManifest
132 fields = line.split(self.FIELD_SEPARATOR)
245 fh.write('%s\n' % self.FIELD_SEPARATOR.join(
250 fh.write('%s\n' % self.FIELD_SEPARATOR.join(
/dports/mail/thunderbird/thunderbird-91.8.0/python/mozbuild/mozpack/
H A Dmanifests.py92 FIELD_SEPARATOR = "\x1f" variable in InstallManifest
134 fields = line.split(self.FIELD_SEPARATOR)
257 % self.FIELD_SEPARATOR.join(
266 % self.FIELD_SEPARATOR.join(six.ensure_text(p) for p in parts)
/dports/lang/spidermonkey78/firefox-78.9.0/python/mozbuild/mozpack/
H A Dmanifests.py92 FIELD_SEPARATOR = '\x1f' variable in InstallManifest
135 fields = line.split(self.FIELD_SEPARATOR)
248 fh.write('%s\n' % self.FIELD_SEPARATOR.join(
253 fh.write('%s\n' % self.FIELD_SEPARATOR.join(
/dports/deskutils/osmo/osmo-0.4.4/src/
H A Dcontacts_import_csv.c26 #define FIELD_SEPARATOR ',' macro
95 gchar *value = substring_fragment(line_buffer, strlen(line_buffer), FIELD_SEPARATOR, field); in csv_get_field()
/dports/net/p5-Net-HL7/Net-HL7-0.76/lib/Net/
H A DHL7.pm84 our $FIELD_SEPARATOR = "|";
/dports/www/firefox-legacy/firefox-52.8.0esr/python/mozbuild/mozpack/
H A Dmanifests.py90 FIELD_SEPARATOR = '\x1f' variable in InstallManifest
131 fields = line.split(self.FIELD_SEPARATOR)
247 fh.write('%s\n' % self.FIELD_SEPARATOR.join(
/dports/comms/ebusd/ebusd-21.3/src/lib/ebus/
H A Dfilereader.cpp135 char prev = FIELD_SEPARATOR; in splitFields()
157 case FIELD_SEPARATOR: in splitFields()
175 } else if (prev == FIELD_SEPARATOR) { in splitFields()
H A Dfilereader.h49 #define FIELD_SEPARATOR ',' macro
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/failmon/src/java/org/apache/hadoop/contrib/failmon/
H A DLocalStore.java51 public final static char FIELD_SEPARATOR = '|'; field in LocalStore
161 sb.append(FIELD_SEPARATOR); in pack()
/dports/net/p5-Net-HL7/Net-HL7-0.76/lib/Net/HL7/Segments/
H A DMSH.pm69 $self->setField(1, $Net::HL7::FIELD_SEPARATOR);
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/osmf/src/org/osmf/utils/
H A DVersion.as56 return _major + FIELD_SEPARATOR + _minor;
131 private static const FIELD_SEPARATOR:String = "."; constant in org.osmf.utils.Version
/dports/devel/staf/src/staf/lang/java/classes/
H A DSTAFLogFormatter.java124 private static String FIELD_SEPARATOR = " "; field in STAFLogFormatter
404 (String)logMap.get("timestamp") + FIELD_SEPARATOR + in writeBody()
405 (String)logMap.get("level") + FIELD_SEPARATOR + in writeBody()
/dports/biology/bamtools/bamtools-2.5.2/src/api/internal/io/
H A DHttpHeader_p.cpp35 static const std::string FIELD_SEPARATOR = ": "; variable
247 key + Constants::FIELD_SEPARATOR + value + Constants::FIELD_NEWLINE; in ToString()

12