Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for WORK (0.06 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
     * URL escape character itself.
     * <p>
     * The server
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!--
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		podUIDs[pod.UID] = true
    	}
    	for _, pod := range mirrorPods {
    		podUIDs[pod.UID] = true
    	}
    	kl.statusManager.RemoveOrphanedStatuses(podUIDs)
    }
    
    // HandlePodCleanups performs a series of cleanup work, including terminating
    // pod workers, killing unwanted pods, and removing orphaned volumes/pod
    // directories. No config changes are sent to pod workers while this method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/bootstrap.min.js.map

    if (!button || button.hasAttribute('disabled') || button.classList.contains('disabled')) {\n      event.preventDefault() // work around Firefox bug #1540995\n    } else {\n      const inputBtn = button.querySelector(Selector.INPUT)\n\n      if (inputBtn && (inputBtn.hasAttribute('disabled') || inputBtn.classList.contains('disabled'))) {\n        event.preventDefault() // work around Firefox bug #1540995\n        return\n      }\n\n      Button._jQueryInterface.call($(button), 'toggle')\n    }\n  })\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    
    OpFoldResult LogicalAndOp::fold(FoldAdaptor adaptor) {
      auto operands = adaptor.getOperands();
      // TODO(b/264429950): Expand this to work for broadcastable shapes and other
      // conditions (e.g. one operand is always True).
      auto result_type = getType();
    
      for (const auto& operand : operands) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	var idleClosing int64
    	var closing []*driverConn
    	if db.maxIdleTime > 0 {
    		// As freeConn is ordered by returnedAt process
    		// in reverse order to minimise the work needed.
    		idleSince := nowFunc().Add(-db.maxIdleTime)
    		last := len(db.freeConn) - 1
    		for i := last; i >= 0; i-- {
    			c := db.freeConn[i]
    			if c.returnedAt.Before(idleSince) {
    				i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          // Unsafe math optimizations can reorder float formulas, and set the
          // compensation to constant 0. The formula must be evaluated as written
          // for the algorithm to work.
          // (Note: -ffast-math is a superset of -funsafe-math-optimizations.)
          if (std::abs(sum) >= std::abs(addend)) {
            compensation += (sum - new_sum) + addend;
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. fastapi/applications.py

                    So you could override this value to trick those tools into using
                    the generated OpenAPI. Have in mind that this is a hack. But if you
                    avoid using features added in OpenAPI 3.1.0, it might work for your
                    use case.
    
                    This is not passed as a parameter to the `FastAPI` class to avoid
                    giving the false idea that FastAPI would generate a different OpenAPI
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	// For HTTP/2, StateActive fires on the transition from zero
    	// to one active request, and only transitions away once all
    	// active requests are complete. That means that ConnState
    	// cannot be used to do per-request work; ConnState only notes
    	// the overall state of the connection.
    	StateActive
    
    	// StateIdle represents a connection that has finished
    	// handling a request and is in the keep-alive state, waiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/c...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
Back to top