Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 405 for nFront (0.11 sec)

  1. src/runtime/mem_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package runtime
    
    // resetMemoryDataView signals the JS front-end that WebAssembly's memory.grow instruction has been used.
    // This allows the front-end to replace the old DataView object with a new one.
    //
    //go:wasmimport gojs runtime.resetMemoryDataView
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 457 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        if (failed(DecomposeTensorListOpsInternal(
                &branch.front(), module, &branch_map,
                decomposed_partitioned_call_callees)))
          return failure();
      }
    
      const bool arg_no_changed = branch_maps.front().empty();
      auto output_buffer_to_size =
          ModifyFunctionReturn(branches.front(), branch_maps.front());
      for (const auto& pair : llvm::drop_begin(llvm::zip(branches, branch_maps), 1))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. test/typeparam/listimp2.dir/a.go

    // Len returns the number of elements of list l.
    // The complexity is O(1).
    func (l *List[_]) Len() int { return l.len }
    
    // Front returns the first element of list l or nil if the list is empty.
    func (l *List[T]) Front() *Element[T] {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.next
    }
    
    // Back returns the last element of list l or nil if the list is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

        // Just ignore the op if this is an external func with no body.
        return;
      }
    
      tf_executor::GraphOp graph_op;
    
      if (llvm::hasSingleElement(func.front().without_terminator())) {
        graph_op = dyn_cast<tf_executor::GraphOp>(func.front().front());
      }
    
      if (!graph_op) {
        func.emitError("expected function to contain only a graph_op");
        signalPassFailure();
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/certs/util.go

    				"ca.key":                 caKey,
    				"front-proxy-ca.crt":     fpCACert,
    				"front-proxy-client.crt": fpCert,
    				"front-proxy-client.key": fpKey,
    				"etcd/ca.crt":            etcdCACert,
    				"etcd/ca.key":            etcdCAKey,
    			},
    		},
    		{
    			Name: "FrontProxy certs missing CA",
    			Files: PKIFiles{
    				"front-proxy-client.crt": fpCert,
    				"front-proxy-client.key": fpKey,
    			},
    			ExpectError: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

      Block& first_if_then_block = first_if.getThenBranch().front();
      auto& second_if_then_body = second_if.getThenBranch().front().getOperations();
      first_if_then_block.getOperations().splice(
          first_if_then_block.without_terminator().end(), second_if_then_body,
          second_if_then_body.begin(), std::prev(second_if_then_body.end()));
    
      Block& first_if_else_block = first_if.getElseBranch().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_noroot_v1.0.1.txt

    A module which has no root package.
    
    -- .mod --
    module example.com/noroot
    -- .info --
    {"Version":"v1.0.1"}
    -- pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 14 18:01:34 UTC 2019
    - 136 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

      const bool signature_change = !then_map.empty() || !else_map.empty();
      if (failed(DecomposeStackOpsInternal(&then_func.front(), module, &then_map,
                                           decomposed_partitioned_call_callees)) ||
          failed(DecomposeStackOpsInternal(&else_func.front(), module, &else_map,
                                           decomposed_partitioned_call_callees))) {
        return failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

              // arguments' type as `scf_block_arguments_type`.
              moveBlock(&tf_cond_or_body_region.front(),
                        &scf_before_or_after_region.front(),
                        scf_block_arguments_type, rewriter);
    
              Operation* cond_or_body_terminator =
                  scf_before_or_after_region.front().getTerminator();
              rewriter.setInsertionPoint(cond_or_body_terminator);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilation_passes_test_main.cc

      args.push_back(reduce_min_cluster_size_arg.get());
    
      int argc = args.size();
    
      if (!tensorflow::Flags::Parse(&argc, &args.front(), flag_list)) {
        LOG(ERROR) << "\n" << usage;
        return 2;
      }
    
      testing::InitGoogleTest(&argc, &args.front());
      return RUN_ALL_TESTS();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 00:31:28 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top