Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for subsequences (1.12 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // (outside compiled) computation into two separate control flow ops with
    // communication between the device/host for data dependencies.  Both device and
    // host control flow initially remain within `device_cluster` and a subsequency
    // call to MoveToHostSingleCluster moves the host side control flow to the host
    // launch in tf_device.parallel_execute.  Uses `compilation_key,
    // `device_ordinal` and `communication_key_index` when creating communication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top