Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for Reserve (3.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // because `op` and `loader` are using different MLIR contexts. See comments
      // on `xla_call_module_context_` for details.
      std::vector<xla::Shape> input_shapes;
      input_shapes.reserve(op.getArgs().size());
      for (mlir::Type type : op.getArgs().getTypes()) {
        input_shapes.push_back(xla::TypeToShape(type));
      }
    
      absl::Status status = loader->RefineDynamicShapes(input_shapes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      if (is_depthwise) {
        transpose_dims = {2, 0, 1, 3};
      } else {
        transpose_dims = {3, 0, 1, 2};
      }
    
      SmallVector<int64_t> new_filter_shape;
      new_filter_shape.reserve(filter_shape.size());
      for (int i = 0; i < filter_shape.size(); ++i) {
        new_filter_shape.push_back(filter_shape[transpose_dims[i]]);
      }
    
      auto get_array_idx = [](ArrayRef<int64_t> shape, const int i, const int j,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    // history here.
    func splitTextSections(ctxt *Link) bool {
    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. cluster/gce/util.sh

      if [[ "${ENABLE_NODE_PROBLEM_DETECTOR:-}" == "standalone" ]]; then
        NODE_PROBLEM_DETECTOR_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      fi
    
      # Reserve the master's IP so that it can later be transferred to another VM
      # without disrupting the kubelets.
      create-static-ip "${MASTER_NAME}-ip" "${REGION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Adrian Imboden <******@****.***>
    *.firenet.ch
    *.svc.firenet.ch
    reservd.com
    thingdustdata.com
    cust.dev.thingdust.io
    cust.disrec.thingdust.io
    cust.prod.thingdust.io
    cust.testing.thingdust.io
    reservd.dev.thingdust.io
    reservd.disrec.thingdust.io
    reservd.testing.thingdust.io
    
    // ticket i/O GmbH : https://ticket.io
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	testCases := []testStaticPolicy{
    		{
    			description:   "should fail, when machine does not have reserved memory for the system workloads",
    			expectedError: fmt.Errorf("[memorymanager] you should specify the system reserved memory"),
    		},
    		{
    			description: "should succeed, when at least one NUMA node has reserved memory",
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    				createObjectInClient("", "v1", "pods", "ns2", makeMetadataObj(pod2ns2)),
    				// 2,3: observe parent
    				processEvent(makeAddEvent(pod2ns2)),
    				assertState(state{
    					graphNodes: []*node{makeNode(pod2ns2)},
    				}),
    				// 4,5: observe namespaced child with invalid cross-namespace reference to parent
    				processEvent(makeAddEvent(pod1ns1, pod2ns1)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // connections and they were configured with "h2" in the TLS
    // Config.NextProtos.
    //
    // Serve always returns a non-nil error.
    func Serve(l net.Listener, handler Handler) error {
    	srv := &Server{Handler: handler}
    	return srv.Serve(l)
    }
    
    // ServeTLS accepts incoming HTTPS connections on the listener l,
    // creating a new service goroutine for each. The service goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	EM_MCHP_PIC      Machine = 204 /* Microchip 8-bit PIC(r) family */
    	EM_INTEL205      Machine = 205 /* Reserved by Intel */
    	EM_INTEL206      Machine = 206 /* Reserved by Intel */
    	EM_INTEL207      Machine = 207 /* Reserved by Intel */
    	EM_INTEL208      Machine = 208 /* Reserved by Intel */
    	EM_INTEL209      Machine = 209 /* Reserved by Intel */
    	EM_KM32          Machine = 210 /* KM211 KM32 32-bit processor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top