Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for subsequences (0.32 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.cc

          TF_ASSIGN_OR_RETURN(
              int matches,
              fieldTagMatches(chunked_field.field_tag(), target_fields));
          if (matches == chunked_field.field_tag_size()) {
            // chunked_field_tags is an initial subsequence of target_fields, which
            // means the chunked_field is relevant and the necessary data should be
            // copied over.
            auto cf = std::make_unique<proto_splitter::ChunkedField>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            Matcher matcher = WORD_SEPARATOR.matcher(string);
            int pos = 0;
            boolean first = true;
            while (matcher.find()) {
                String chunk = string.subSequence(pos, matcher.start()).toString();
                pos = matcher.end();
                if (chunk.isEmpty()) {
                    continue;
                }
                if (lower && first) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            Matcher matcher = WORD_SEPARATOR.matcher(string);
            int pos = 0;
            boolean first = true;
            while (matcher.find()) {
                String chunk = string.subSequence(pos, matcher.start()).toString();
                pos = matcher.end();
                if (chunk.isEmpty()) {
                    continue;
                }
                if (lower && first) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

                    public int length() {
                        return name.length();
                    }
    
                    @Override
                    public CharSequence subSequence(final int start, final int end) {
                        return name.subSequence(start, end);
                    }
    
                };
            }
    
            /**
             * @return CharSequence
             */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/BaseEncoding.java

          char padChar = paddingChar.charValue();
          int l;
          for (l = chars.length() - 1; l >= 0; l--) {
            if (chars.charAt(l) != padChar) {
              break;
            }
          }
          return chars.subSequence(0, l + 1);
        }
    
        @Override
        public boolean canDecode(CharSequence chars) {
          checkNotNull(chars);
          chars = trimTrailingPadding(chars);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/BaseEncoding.java

          char padChar = paddingChar.charValue();
          int l;
          for (l = chars.length() - 1; l >= 0; l--) {
            if (chars.charAt(l) != padChar) {
              break;
            }
          }
          return chars.subSequence(0, l + 1);
        }
    
        @Override
        public boolean canDecode(CharSequence chars) {
          checkNotNull(chars);
          chars = trimTrailingPadding(chars);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// and restart when. If this handler reacts only to
    			// changes in Spec then we have a scenario in which the
    			// rollout leaves the old Status in place. The scenario
    			// ends with this subsequence: deploy the last new server
    			// before deleting the last old server, and in between
    			// those two operations the last old server crashes and
    			// recovers. The chosen solution is making this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top