Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for nFront (0.14 sec)

  1. src/runtime/malloc.go

    		// about keeping the usable heap contiguous.
    		// Hence:
    		//
    		// 1. We reserve space for all heapArenas up front so
    		// they don't get interleaved with the heap. They're
    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    				MeshExternal: true,
    			},
    			port: 7777,
    			node: &model.Proxy{
    				DNSDomain: "tests.svc.cluster.local",
    			},
    			want: []string{"aaa.example.local"},
    		},
    		{
    			name: "front subset of cluster domain in address",
    			service: &model.Service{
    				Hostname:     "aaa.example.my",
    				MeshExternal: true,
    			},
    			port: 7777,
    			node: &model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    //    input     fft_len
    //     \      /
    //     rfft
    //
    //     ||
    //     \/
    //
    //   input       fft_len
    //    \            /
    //   expand_dim    concat with [1] at the front
    //      \         /
    //     rfft_2d
    //       |
    //     squeeze
    struct ConvertRfftToRfft2d : public RewritePattern {
      explicit ConvertRfftToRfft2d(MLIRContext *context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    }
    
    // pushBack adds w to the back of the queue.
    func (q *wantConnQueue) pushBack(w *wantConn) {
    	q.tail = append(q.tail, w)
    }
    
    // popFront removes and returns the wantConn at the front of the queue.
    func (q *wantConnQueue) popFront() *wantConn {
    	if q.headPos >= len(q.head) {
    		if len(q.tail) == 0 {
    			return nil
    		}
    		// Pick up tail as new head, clear tail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto block_shape_ty = block_shape.getType();
        if (!block_shape_ty.hasRank() || block_shape_ty.getRank() != 1) {
          return failure();
        }
    
        const int block_rank = block_shape_ty.getShape().front();
        auto remainder_shape = input_shape.drop_front(1 + block_rank);
    
        const int64_t batch_size = input_shape[0];
    
        // Compute the product of the block_shape values.
        int64_t block_num_elems = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        }
      }
    
      // Converts path reference to URI reference.
      //
      // If URI scheme is empty, URI reference is `path` relative to current test
      // root directory. Otherwise, we need to add the `<scheme>://` in front of
      // this path.
      //
      // Note that some filesystem might require a different approach here, for
      // example they might require the root directory path to be in a special
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    	}
    	m = Map(encode, r)
    	if m != s {
    		t.Errorf("encoding not handled correctly: expected %q got %q", s, m)
    	}
    
    	// 9. Check mapping occurs in the front, middle and back
    	trimSpaces := func(r rune) rune {
    		if unicode.IsSpace(r) {
    			return -1
    		}
    		return r
    	}
    	m = Map(trimSpaces, "   abc    123   ")
    	expect = "abc123"
    	if m != expect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
      k8s.io.api.core.v1.Lifecycle lifecycle = 36;
    
      // Controls if sidecar is injected at the front of the container list and blocks the start of the other containers until the proxy is ready
      //
      // Deprecated: replaced by ProxyConfig setting which allows per-pod configuration of this behavior.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/internal/trace/order.go

    	copy(newBuf[:len(first)], first)
    	copy(newBuf[len(first):], last)
    
    	// Update the queue state.
    	q.start = 0
    	q.end = len(q.buf)
    	q.buf = newBuf
    }
    
    // pop removes an event from the front of the queue. If the
    // queue is empty, it returns an EventBad event.
    func (q *queue[T]) pop() (T, bool) {
    	if q.end-q.start == 0 {
    		return *new(T), false
    	}
    	elem := &q.buf[q.start%len(q.buf)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	// If the pod was at the head of the list, then all
    	// events between it and the next pod are no longer needed
    	// and can be removed.
    	for {
    		e := p.inFlightEvents.Front()
    		if e == nil {
    			// Empty list.
    			break
    		}
    		if _, ok := e.Value.(*clusterEvent); !ok {
    			// A pod, must stop pruning.
    			break
    		}
    		p.inFlightEvents.Remove(e)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top