Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for nFront (0.23 sec)

  1. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--proxy-client-key-file=" + filepath.FromSlash("/var/lib/certs/front-proxy-client.key"),
    				"--requestheader-username-headers=X-Remote-User",
    				"--requestheader-group-headers=X-Remote-Group",
    				"--requestheader-extra-headers-prefix=X-Remote-Extra-",
    				"--requestheader-client-ca-file=" + filepath.Join(testCertsDir, "front-proxy-ca.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // non-cluster ops that have some outgoing (transitive) dependency to some
      // cluster op (`cluster_predecessor_ops`).
      auto rfront = Block::reverse_iterator(cluster_ops.front());
      auto rback = Block::reverse_iterator(cluster_ops.back());
      for (Operation& op : llvm::make_range(rback, rfront)) {
        if (cluster_ops.contains(&op)) continue;
        bool has_dependency_to_cluster =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. test/typeparam/list2.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: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certs_test.go

    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    			},
    		},
    		{
    			name: "missing ca.crt",
    			files: certstestutil.PKIFiles{
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        cloned_cond.eraseArgument(idx);
        cloned_body.front().getTerminator()->eraseOperand(idx);
        cloned_body.eraseArgument(idx);
      }
    
      // Patch up branch function types.
      for (func::FuncOp func : {cloned_cond, cloned_body}) {
        func.setType(
            FunctionType::get(func.getContext(), func.front().getArgumentTypes(),
                              func.front().getTerminator()->getOperandTypes()));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/host_runtime/tpu_rewrite_pass.cc

                                            num_cores_per_replica);
      for (mlir::Region& region : old_parallel_execute.getRegions()) {
        if (!llvm::isa<tf_device::ClusterFuncOp>(region.front().front())) {
          for (Type t : region.front().front().getResultTypes())
            concatenated_output_types.emplace_back(t);
        }
      }
    
      for (int core = 0; core < num_cores_per_replica; ++core) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

    bool IsSupportedGraph(func::FuncOp func) {
      if (!llvm::hasSingleElement(func)) return false;
    
      Block& block = func.front();
      if (!llvm::hasSingleElement(block.without_terminator())) return false;
    
      auto graph = llvm::dyn_cast<tf_executor::GraphOp>(block.front());
      if (!graph) return false;
    
      Operation* terminator = block.getTerminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top