Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 405 for nFront (0.34 sec)

  1. src/cmd/go/testdata/mod/example.com_noroot_v1.0.0.txt

    A module which has no root package.
    
    -- .mod --
    module example.com/noroot
    -- .info --
    {"Version":"v1.0.0"}
    -- 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)
  2. 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)
  3. src/container/list/list_test.go

    	l.MoveToFront(e3) // should be no-op
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    
    	l.MoveToBack(e3) // move from front
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    	l.MoveToBack(e3) // should be no-op
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    
    	e2 = l.InsertBefore(2, e1) // insert before front
    	checkListPointers(t, l, []*Element{e2, e1, e4, e3})
    	l.Remove(e2)
    	e2 = l.InsertBefore(2, e4) // insert before middle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  4. test/typeparam/listimp2.dir/main.go

    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    
    	l2.MoveToBack(e3) // move from front
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    	l2.MoveToBack(e3) // should be no-op
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    
    	e2 = l2.InsertBefore(2, e1) // insert before front
    	a.CheckListPointers(l2, []*(a.Element[int]){e2, e1, e4, e3})
    	l2.Remove(e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

      builder.create<tf_executor::FetchOp>(loc, to_fetch);
      // Build Island.
      island.getBody().push_back(new Block);
      island.getBody().front().getOperations().splice(
          island.getBody().front().begin(), body.getOperations(),
          copy_range.begin(), copy_range.end());
      builder.setInsertionPointToEnd(&island.getBody().front());
      builder.create<tf_executor::YieldOp>(loc, return_op.getOperands());
      for (auto item : llvm::enumerate(graph_op.getResults())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. releasenotes/notes/remote-ip.yaml

        **Added** AuthorizationPolicy now supports a Source of type remoteIpBlocks/notRemoteIpBlocks that map to a new Condition attribute called "remote.ip" that can also be used in the "when" clause.  If using an http/https load balancer in front of the ingress gateway, the "remote.ip" attribute is set to the original client IP address determined by the X-Forwarded-For http header from the trusted proxy configured through the numTrustedProxies field of the gatewayTopology under the meshConfig...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 23 17:46:08 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/phases/certs/doc.go

    		 - etcd/server.key
    		 - etcd/peer.crt
    		 - etcd/peer.key
    		 - etcd/healthcheck-client.crt
    		 - etcd/healthcheck-client.key
    		 - sa.pub
    		 - sa.key
    		 - front-proxy-ca.crt
    		 - front-proxy-ca.key
    		 - front-proxy-client.crt
    		 - front-proxy-client.key
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  9. src/container/list/list.go

    func New() *List { return new(List).Init() }
    
    // 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) Front() *Element {
    	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: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        RegionRange regions) {
      for (Region* region : regions) {
        assert(llvm::hasSingleElement(*region) && "Expected single block region");
        Block& front = region->front();
        auto old_return = front.getTerminator();
        assert(old_return->getNumOperands() == op_->getNumResults());
        auto new_return_operands = llvm::to_vector<4>(old_return->getOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top