Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Resets (0.15 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                          ReplaceNode(g, call_node, node_def));
      VLOG(4) << "Added HostCompute node: " << host_compute_node->DebugString();
    
      return host_compute_node;
    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    // (XlaRecvAtHost nodes; XlaSendFromHost nodes; If/While/FuncCall nodes
    // containing XlaRecvAtHost/XlaSendFromHost).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    same information as the -v flag in a machine-readable format.
    //
    //	-list regexp
    //	    List tests, benchmarks, fuzz tests, or examples matching the regular
    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	if timeout <= 0 {
    		return false
    	}
    	return dc.createdAt.Add(timeout).Before(nowFunc())
    }
    
    // resetSession checks if the driver connection needs the
    // session to be reset and if required, resets it.
    func (dc *driverConn) resetSession(ctx context.Context) error {
    	dc.Lock()
    	defer dc.Unlock()
    
    	if !dc.needReset {
    		return nil
    	}
    	if cr, ok := dc.ci.(driver.SessionResetter); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/performance/tests-longest.png

    tests-longest.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		// can resume performing those duties. If it wakes from a syscall it
    		// resets idle and delay as a bet that since it had retaken a P from a
    		// syscall before, it may need to do it again shortly after the
    		// application starts work again. It does not reset idle when waking
    		// from a timer to avoid adding system load to applications that spend
    		// most of their time sleeping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/popper.min.js.map

    as reference to\n  // avoid to make this modifier completely useless and look like broken\n  if (data.instance.reference === boundariesElement) {\n    boundariesElement = getOffsetParent(boundariesElement);\n  }\n\n  // NOTE: DOM access here\n  // resets the popper's position so that the document size can be calculated excluding\n  // the size of the popper element itself\n  const transformProp = getSupportedPropertyName('transform');\n  const popperStyles = data.instance.popper.style; // assignment...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "integer"
            },
            "started": {
              "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.",
              "type": "boolean"
            },
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                        });
    
      struct NamedAsset {
        llvm::StringRef name;
        AssetOp asset;
      };
      llvm::SmallVector<NamedAsset, 4> assets;
      for (auto asset : module.getOps<AssetOp>()) {
        assets.push_back({asset.getName(), asset});
      }
      llvm::stable_sort(assets, [](const NamedAsset& a, const NamedAsset& b) {
        return a.name < b.name;
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    webview-assets.cloud9.ap-northeast-3.amazonaws.com
    vfs.cloud9.ap-south-1.amazonaws.com
    webview-assets.cloud9.ap-south-1.amazonaws.com
    vfs.cloud9.ap-southeast-1.amazonaws.com
    webview-assets.cloud9.ap-southeast-1.amazonaws.com
    vfs.cloud9.ap-southeast-2.amazonaws.com
    webview-assets.cloud9.ap-southeast-2.amazonaws.com
    vfs.cloud9.ca-central-1.amazonaws.com
    webview-assets.cloud9.ca-central-1.amazonaws.com
    vfs.cloud9.eu-central-1.amazonaws.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
        asset_filename = 'assets.extra/tf_serving_warmup_requests'
        file_io.create_dir_v2(
            os.path.join(self._input_saved_model_path, 'assets.extra')
        )
        file_io.write_string_to_file(
            filename=os.path.join(self._input_saved_model_path, asset_filename),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top