Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for SplitV (0.33 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                    }
                    else {
                        // not enough credits available or too big, split
                        if ( log.isDebugEnabled() ) {
                            log.debug("Not enough credits, split at " + last);
                        }
                        synchronized ( last ) {
                            nextHead = last.split();
                        }
                        break;
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    	if len(completedIndexesStr) == 0 || len(failedIndexesStr) == 0 {
    		return nil
    	}
    	completedIndexesIntervals := strings.Split(completedIndexesStr, ",")
    	failedIndexesIntervals := strings.Split(failedIndexesStr, ",")
    	var completedPos, failedPos int
    	cX, cY, cErr := parseIndexInterval(completedIndexesIntervals[completedPos], completions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocum...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    		// this is a leaf function, and when clang sees a leaf
    		// function it won't emit the split stack prologue for
    		// the function. However, if this function refers to a
    		// non-split-stack function, which will happen if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      sharding = sharding_attr.str();
      return mlir::success();
    }
    
    // Create an `_XlaHostComputeMlir` for the map_outside_compilation case. Inputs
    // are converted from split sharding to MANUAL sharding and outputs are
    // converted from MANUAL sharding to split sharding. Set `common_split_sharding`
    // if it has not yet been set. Output `full_outputs`, which is the outputs of
    // the `_XlaHostComputeMlir` and add the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		// metadata about the release, one item per line.
    		if i := strings.Index(b, "\n"); i >= 0 {
    			rest := b[i+1:]
    			b = chomp(b[:i])
    			for _, line := range strings.Split(rest, "\n") {
    				f := strings.Fields(line)
    				if len(f) == 0 {
    					continue
    				}
    				switch f[0] {
    				default:
    					fatalf("VERSION: unexpected line: %s", line)
    				case "time":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.client;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs;
    import static org.opensearch.core.action.ActionListener.wrap;
    
    import java.io.File;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    :a.value})});var gb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!gb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            List<File> jars = new ArrayList<>();
    
            if (extClassPath != null && !extClassPath.isEmpty()) {
                for (String jar : extClassPath.split(File.pathSeparator)) {
                    File file = resolveFile(new File(jar), cliRequest.workingDirectory);
    
                    slf4jLogger.debug("  included '{}'", file);
    
                    jars.add(file);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/main/webapp/js/bootstrap.min.js

    urn document.querySelector(e)?e:null}catch(t){return null}},getTransitionDurationFromElement:function(t){if(!t)return 0;var e=g(t).css("transition-duration"),n=g(t).css("transition-delay"),i=parseFloat(e),o=parseFloat(n);return i||o?(e=e.split(",")[0],n=n.split(",")[0],1e3*(parseFloat(e)+parseFloat(n))):0},reflow:function(t){return t.offsetHeight},triggerTransitionEnd:function(t){g(t).trigger(n)},supportsTransitionEnd:function(){return Boolean(n)},isElement:function(t){return(t[0]||t).nodeType},...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
Back to top