Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 681 for Separator (0.55 sec)

  1. src/main/java/org/codelibs/core/lang/SystemUtil.java

        /**
         * <code>line.separator</code> システムプロパティ。例えばMac OS Xなら
         * <code>&quot;\n&quot;</code>
         */
        public static final String LINE_SEPARATOR = System.getProperty("line.separator");
    
        /**
         * <code>path.separator</code> システムプロパティ。例えばMac OS Xなら
         * <code>&quot;:&quot;</code>
         */
        public static final String PATH_SEPARATOR = System.getProperty("path.separator");
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/UriTextResource.java

            paramValue.setLength(0);
            int separator = contentType.indexOf("=", pos);
            if (separator < 0) {
                separator = contentType.length();
            }
            paramName.append(contentType.substring(pos, separator).trim());
            if (separator >= contentType.length() - 1) {
                return contentType.length();
            }
    
            int startValue = separator + 1;
            int endValue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/StandardSystemProperty.java

      OS_ARCH("os.arch"),
    
      /** Operating system version. */
      OS_VERSION("os.version"),
    
      /** File separator ("/" on UNIX). */
      FILE_SEPARATOR("file.separator"),
    
      /** Path separator (":" on UNIX). */
      PATH_SEPARATOR("path.separator"),
    
      /** Line separator ("\n" on UNIX). */
      LINE_SEPARATOR("line.separator"),
    
      /** User's account name. */
      USER_NAME("user.name"),
    
      /** User's home directory. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/StandardSystemProperty.java

      OS_ARCH("os.arch"),
    
      /** Operating system version. */
      OS_VERSION("os.version"),
    
      /** File separator ("/" on UNIX). */
      FILE_SEPARATOR("file.separator"),
    
      /** Path separator (":" on UNIX). */
      PATH_SEPARATOR("path.separator"),
    
      /** Line separator ("\n" on UNIX). */
      LINE_SEPARATOR("line.separator"),
    
      /** User's account name. */
      USER_NAME("user.name"),
    
      /** User's home directory. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

        - org.gradle.dependency.bundling = external
        - org.gradle.verificationtype    = main-sources
    Artifacts
        - src${File.separator}main${File.separator}java (artifactType = directory)
        - src${File.separator}main${File.separator}resources (artifactType = directory)
        - src${File.separator}more${File.separator}java (artifactType = directory)""")
    
            and:
            hasIncubatingLegend()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

            return value == 1 ? value + singular : value + plural;
        }
    
        private String optionalNumber(String separator, long value, String description) {
            return value == 0 ? "" : separator + value + description;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/Gradleception.kt

        val idSuffix = if (idParts.isNotEmpty()) {
            "With${idParts.joinToString(separator = "And")}"
        } else ""
        id("${model.projectId}_Gradleception$idSuffix")
        name = "Gradleception - ${labels.joinToString(separator = " ")}"
        val descriptionSuffix = if (descriptionParts.isNotEmpty()) {
            " (${descriptionParts.joinToString(separator = ", ")})"
        } else ""
        description =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if b == nil {
    		return
    	}
    	h.WriteString(b.clusterName)
    	h.Write(Separator)
    	h.WriteString(string(b.network))
    	h.Write(Separator)
    	h.WriteString(string(b.clusterID))
    	h.Write(Separator)
    	h.WriteString(string(b.nodeType))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(b.clusterLocal))
    	h.Write(Separator)
    	if b.proxy != nil {
    		h.WriteString(strconv.FormatBool(b.proxy.IsProxylessGrpc()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderSpec.groovy

            String validPath5 = System.getProperty("user.home") + File.separator + "*"
            String validPath6 = "/*"
            String inValidPath1 = System.getProperty("user.home") + File.separator + "Non exist path"
            String inValidPath2 = System.getProperty("user.home") + File.separator + "Non exist path" + File.separator + "*"
    
            paths.add(new File(validPath1))
            paths.add(new File(inValidPath2))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:01:42 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. cmd/metacache-set_gen.go

    			}
    		case "Recursive":
    			z.Recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Recursive")
    				return
    			}
    		case "Separator":
    			z.Separator, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Separator")
    				return
    			}
    		case "Create":
    			z.Create, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Create")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:23:12 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top