- Sort Score
- Result 10 results
- Languages All
Results 3921 - 3930 of 6,031 for AsString (0.1 sec)
-
src/test/java/jcifs/tests/Strings.java
package jcifs.tests; /** * @author mbechler * */ public class Strings { /** * from http://www.cl.cam.ac.uk/~mgk25/ucs/examples/quickbrown.txt */ static final String[] UNICODE_STRINGS = new String[] { "da - jordbær fløde på", // x "de - Zwölf Boxkämpfer", // x "el - Γαζέες καὶ μυρτιὲς", // x "es - pingüino kilómetros frío, añoraba", // x
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptParser.java
return Collections.singletonList(parseEncryptCliOptions(context.parserRequest.args())); } protected CommonsCliEncryptOptions parseEncryptCliOptions(List<String> args) throws ParserException { try { return CommonsCliEncryptOptions.parse(args.toArray(new String[0])); } catch (ParseException e) { throw new ParserException("Failed to parse command line options: " + e.getMessage(), e); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
cb.query().setWebConfigId_Equal(webConfigId); }); } public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } public OptionalEntity<WebConfig> getWebConfigByName(final String name) { final ListResultBean<WebConfig> list = webConfigBhv.selectList(cb -> { cb.query().setName_Equal(name);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java
@Target(ElementType.TYPE) @Inherited public @interface Mojo { /** * goal name (required). * @return the goal name */ @Nonnull String name(); /** * default phase to bind your mojo. * @return the default phase */ @Nonnull String defaultPhase() default ""; /** * does your mojo requires a project to be executed? * @return requires a project */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 18:21:40 UTC 2024 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java
* The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.artifact.repository.metadata.io.isStrict"; /** * Reads the metadata from the specified file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsReader.java
* The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.settings.io.isStrict"; /** * Reads the settings from the specified file. * * @param input The file to deserialize the settings from, must not be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsReader.java
* The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.toolchains.io.isStrict"; /** * Reads the toolchains from the specified file. * * @param input The file to deserialize the toolchains from, must not be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/certificates.go
secret.Identity, t, secret.State, certNotExpired(ca), n, valueOrNA(ca.ExpirationTime), valueOrNA(ca.ValidFrom)) } } } return w.Flush() } func valueOrNA(value string) string { if value == "" { return "NA" } return value } func certNotExpired(cert *Cert) bool { // case where cert state is in either Initializing or Unavailable state
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Apr 25 16:38:16 UTC 2024 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapEntry.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 05 00:40:25 UTC 2021 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComReadAndXResponse.java
return bufferIndex - start; } int readBytesWireFormat( byte[] buffer, int bufferIndex ) { // handled special in SmbTransport.doRecv() return 0; } public String toString() { return new String( "SmbComReadAndXResponse[" + super.toString() + ",dataCompactionMode=" + dataCompactionMode + ",dataLength=" + dataLength + ",dataOffset=" + dataOffset + "]" );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0)