Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for chardata (0.2 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            int shorterLength = shorter.length();
            if (longerLength < shorterLength) {
                return false;
            }
            for (int i = shorterLength; i > 0; i--) {
                if (longer.charAt(longerLength - i) != shorter.charAt(shorterLength - i)) {
                    return false;
                }
            }
            return true;
        }
    
        public static URI toSecureUrl(URI scriptUri) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/internal/trace/raw/textreader.go

    				return Event{}, err
    			}
    			frame, err := readArgs(line, frameFields)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    	if spec.HasData {
    		line, err := r.nextLine()
    		if err == io.EOF {
    			return Event{}, fmt.Errorf("unexpected EOF while reading data for %s: args=%v", evStr, args)
    		}
    		if err != nil {
    			return Event{}, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    		Args:    []string{"id", "nframes"},
    		IsStack: true,
    	},
    	EvStrings: event.Spec{
    		Name: "Strings",
    	},
    	EvString: event.Spec{
    		Name:    "String",
    		Args:    []string{"id"},
    		HasData: true,
    	},
    	EvCPUSamples: event.Spec{
    		Name: "CPUSamples",
    	},
    	EvCPUSample: event.Spec{
    		Name: "CPUSample",
    		Args: []string{"time", "m", "p", "g", "stack"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    boolean isBlankModule = true;
                    if (module != null) {
                        for (int j = 0; j < module.length(); j++) {
                            if (!Character.isWhitespace(module.charAt(j))) {
                                isBlankModule = false;
                            }
                        }
                    }
    
                    if (isBlankModule) {
                        addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

                    if (prunedName.isEmpty()) {
                        prunedName = task.getName();
                    }
                    prunedName = ("" + prunedName.charAt(0)).toLowerCase() + prunedName.substring(1);
                    configureTaskDefaults((T) task, prunedName);
                }
            });
        }
    
        protected void configureTaskDefaults(T task, String baseName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    boolean isBlankModule = true;
                    if (module != null) {
                        for (int j = 0; j < module.length(); j++) {
                            if (!Character.isWhitespace(module.charAt(j))) {
                                isBlankModule = false;
                            }
                        }
                    }
    
                    if (isBlankModule) {
                        addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

         */
        public static boolean containsWhitespace(String str) {
            logDeprecation();
            for (int i = 0; i < str.length(); i++) {
                if (Character.isWhitespace(str.charAt(i))) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

                return classNameArray.length < segments.length - 1;
            }
    
            private boolean patternStartsWithUpperCase(String pattern) {
                return pattern.length() > 0 && Character.isUpperCase(pattern.charAt(0));
            }
        }
    
        private static String getSimpleName(String fullQualifiedName) {
            String simpleName = substringAfterLast(fullQualifiedName, ".");
            if ("".equals(simpleName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

       *
       * <pre>{@code
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
       *         .collect(toImmutableListMultimap(str -> str.charAt(0), str -> str.substring(1)));
       *
       * // is equivalent to
       *
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     new ImmutableListMultimap.Builder<Character, String>()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

            val hasData = sendBuffer.size > 0L
            val hasTrailers = trailers != null
            when {
              hasTrailers -> {
                while (sendBuffer.size > 0L) {
                  emitFrame(false)
                }
                connection.writeHeaders(id, outFinished, trailers!!.toHeaderList())
              }
    
              hasData -> {
                while (sendBuffer.size > 0L) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top