Home
last modified time | relevance | path

Searched refs:separatorIndex (Results 1 – 25 of 170) sorted by relevance

1234567

/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/tombuildsstuff/giovanni/storage/2018-11-09/datalakestore/paths/
H A Dresource_id.go43 separatorIndex := strings.Index(fileSystemAndPath, "/")
45 if separatorIndex < 0 {
49 fileSystem = fileSystemAndPath[0:separatorIndex]
50 path = fileSystemAndPath[separatorIndex+1:]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/paths/
H A Dresource_id.go43 separatorIndex := strings.Index(fileSystemAndPath, "/")
45 if separatorIndex < 0 {
49 fileSystem = fileSystemAndPath[0:separatorIndex]
50 path = fileSystemAndPath[separatorIndex+1:]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/
H A DDefaultPropertiesPersister.java111 int separatorIndex = line.indexOf("="); in doLoad() local
112 if (separatorIndex == -1) { in doLoad()
113 separatorIndex = line.indexOf(":"); in doLoad()
115 String key = (separatorIndex != -1 ? line.substring(0, separatorIndex) : line); in doLoad()
116 String value = (separatorIndex != -1) ? line.substring(separatorIndex + 1) : ""; in doLoad()
/dports/games/multimc/MultiMC5-0.6.11/api/logic/minecraft/gameoptions/
H A DGameOptions.cpp24 auto separatorIndex = line.indexOf(':'); in load() local
25 if(separatorIndex == -1) in load()
29 auto key = QString::fromUtf8(line.data(), separatorIndex); in load()
30 …auto value = QString::fromUtf8(line.data() + separatorIndex + 1, line.size() - 1 - separatorIndex); in load()
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/main/java/org/apache/zookeeper/server/controller/
H A DControlCommand.java111 int separatorIndex = uri.indexOf('/'); in parseUri() local
112 if (separatorIndex < 0) { in parseUri()
116 name = uri.substring(0, separatorIndex); in parseUri()
117 param = uri.substring(separatorIndex + 1); in parseUri()
/dports/editors/kile/kile-09ee4ef0417165b93da82c1fc057b9e1713a0c05/src/
H A Dtool_utils.cpp81 const int separatorIndex = s.indexOf('/'); in fromConfigStringRepresentation() local
82 if(separatorIndex < 0) { // for example, is 's' is empty in fromConfigStringRepresentation()
85 QString configString = s.mid(separatorIndex + 1); in fromConfigStringRepresentation()
89 return ToolConfigPair(s.left(separatorIndex), configString); in fromConfigStringRepresentation()
/dports/devel/coursier/coursier-1.1.0-M12/modules/bootstrap-launcher/src/main/java/coursier/bootstrap/launcher/jar/
H A DHandler.java180 int separatorIndex = spec.lastIndexOf("!/"); in getFileFromSpec() local
181 if (separatorIndex == -1) { in getFileFromSpec()
185 new URL(spec.substring(0, separatorIndex)); in getFileFromSpec()
267 int separatorIndex = file.indexOf(SEPARATOR); in hashCode() local
268 if (separatorIndex == -1) { in hashCode()
271 String source = file.substring(0, separatorIndex); in hashCode()
272 String entry = canonicalize(file.substring(separatorIndex + 2)); in hashCode()
319 int separatorIndex = spec.indexOf(SEPARATOR); in getRootJarFileFromUrl() local
320 if (separatorIndex == -1) { in getRootJarFileFromUrl()
323 String name = spec.substring(0, separatorIndex); in getRootJarFileFromUrl()
/dports/textproc/jalingo/jalingo-0.6.0-src/src/ja/lingo/readers/mova/
H A DMovaParser.java106 …int separatorIndex = ArrayUtil.indexOf( lineBytes.getBytes(), lineBytes.getLength(), SEPARATOR_BYT… in appendArticle() local
107 if ( separatorIndex != -1 ) { in appendArticle()
109 lineStart, separatorIndex, in appendArticle()
110 lineStart + (separatorIndex + SEPARATOR_BYTES.length), in appendArticle()
111 lineBytes.getLength() - (separatorIndex + SEPARATOR_BYTES.length) ); in appendArticle()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Extensions/src/System/Runtime/Versioning/
H A DFrameworkName.cs177 int separatorIndex = component.IndexOf(KeyValueSeparator); in FrameworkName()
179 … if (separatorIndex == -1 || separatorIndex != component.LastIndexOf(KeyValueSeparator)) in FrameworkName()
185 string key = component.Substring(0, separatorIndex).Trim(); in FrameworkName()
186 string value = component.Substring(separatorIndex + 1).Trim(); in FrameworkName()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.ui.trace/src/org/eclipse/ui/trace/internal/utils/
H A DTracingUtils.java70 int separatorIndex = debugOptionAsString.indexOf(TracingConstants.DEBUG_OPTION_PATH_SEPARATOR); in convertToDebugOption() local
71 if (separatorIndex != -1) { in convertToDebugOption()
72 String key = debugOptionAsString.substring(0, separatorIndex); in convertToDebugOption()
73 String value = debugOptionAsString.substring(separatorIndex + 1, debugOptionAsString.length()); in convertToDebugOption()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/factory/config/
H A DPropertyOverrideConfigurer.java124 int separatorIndex = key.indexOf(this.beanNameSeparator); in processKey() local
125 if (separatorIndex == -1) { in processKey()
129 String beanName = key.substring(0, separatorIndex); in processKey()
130 String beanProperty = key.substring(separatorIndex+1); in processKey()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/
H A DNameMatchRequestorWrapper.java87 int separatorIndex= path.indexOf(IJavaSearchScope.JAR_FILE_ENTRY_SEPARATOR); in getType() local
88 type = separatorIndex == -1 in getType()
90 : createTypeFromJar(path, separatorIndex); in getType()
98 private IType createTypeFromJar(String resourcePath, int separatorIndex) throws JavaModelException { in createTypeFromJar() argument
104 String jarPath= resourcePath.substring(0, separatorIndex); in createTypeFromJar()
105 …= ((AbstractJavaSearchScope)this.scope).packageFragmentRoot(resourcePath, separatorIndex, jarPath); in createTypeFromJar()
112 String classFilePath= resourcePath.substring(separatorIndex + 1); in createTypeFromJar()
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/net-mgmt/mysqld_exporter/mysqld_exporter-0.12.1/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/prometheus/procfs/procfs-0.0.3/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/alertmanager/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/prometheus/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/prometheus/procfs/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/prometheus/procfs/procfs-0.0.5/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/prometheus/procfs/procfs-0.0.3/
H A Dmountinfo.go93 separatorIndex := strings.Index(mountString, "-")
94 if separatorIndex == -1 {
97 beforeFields := strings.Fields(mountString[:separatorIndex])
98 afterFields := strings.Fields(mountString[separatorIndex+1:])
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/scheduling/config/
H A DTaskExecutorFactoryBean.java109 int separatorIndex = this.poolSize.indexOf('-'); in determinePoolSizeRange() local
110 if (separatorIndex != -1) { in determinePoolSizeRange()
111 corePoolSize = Integer.valueOf(this.poolSize.substring(0, separatorIndex)); in determinePoolSizeRange()
112 …maxPoolSize = Integer.valueOf(this.poolSize.substring(separatorIndex + 1, this.poolSize.length())); in determinePoolSizeRange()
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/sheenbidi/Source/
H A DSBAlgorithm.c96 …ERNAL SBUInteger SBAlgorithmGetSeparatorLength(SBAlgorithmRef algorithm, SBUInteger separatorIndex) in SBAlgorithmGetSeparatorLength() argument
99 SBUInteger stringIndex = separatorIndex; in SBAlgorithmGetSeparatorLength()
104 separatorLength = stringIndex - separatorIndex; in SBAlgorithmGetSeparatorLength()
112 separatorLength = stringIndex - separatorIndex; in SBAlgorithmGetSeparatorLength()

1234567