Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Traverse (0.26 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				{Name: "HOST_IP", Value: testKubeletHostIP},
    				{Name: "HOST_IPS", Value: testKubeletHostIP + "," + testKubeletHostIPv6},
    			},
    		},
    		{
    			name:               "downward api pod ips reverse order",
    			ns:                 "downward-api",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_IP",
    						ValueFrom: &v1.EnvVarSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	/* VSX shift */
    	{as: AXXSLDWI, a1: C_VSREG, a2: C_VSREG, a3: C_U15CON, a6: C_VSREG, type_: 90, size: 4}, /* vsx shift immediate, xx3-form */
    
    	/* VSX reverse bytes */
    	{as: AXXBRQ, a1: C_VSREG, a6: C_VSREG, type_: 101, size: 4}, /* vsx reverse bytes */
    
    	/* VSX scalar FP-FP conversion */
    	{as: AXSCVDPSP, a1: C_VSREG, a6: C_VSREG, type_: 89, size: 4}, /* vsx scalar fp-fp conversion, xx2-form */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	containerStatusesCopy := make([]*kubecontainer.Status, len(podStatus.ContainerStatuses))
    	copy(containerStatusesCopy, podStatus.ContainerStatuses)
    
    	// Make the latest container status comes first.
    	sort.Sort(sort.Reverse(kubecontainer.SortContainerStatusesByCreationTime(containerStatusesCopy)))
    	// Set container statuses according to the statuses seen in pod status
    	containerSeen := map[string]int{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    				createEvent(addEvent, "3", []string{"1", "2"}),
    				createEvent(addEvent, "4", []string{"3"}),
    				createEvent(updateEvent, "2", []string{"4"}),
    			},
    		},
    		{
    			name: "reverse test2",
    			events: []event{
    				createEvent(addEvent, "4", []string{"2"}),
    				createEvent(addEvent, "3", []string{"1", "2"}),
    				createEvent(addEvent, "2", []string{"1"}),
    				createEvent(addEvent, "1", []string{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	var idleClosing int64
    	var closing []*driverConn
    	if db.maxIdleTime > 0 {
    		// As freeConn is ordered by returnedAt process
    		// in reverse order to minimise the work needed.
    		idleSince := nowFunc().Add(-db.maxIdleTime)
    		last := len(db.freeConn) - 1
    		for i := last; i >= 0; i-- {
    			c := db.freeConn[i]
    			if c.returnedAt.Before(idleSince) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    //===----------------------------------------------------------------------===//
    // TransposeOp
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // The function recursively traverses the dimensions of the output tensor in
    // a row-major order and writes the value of the output tensor into
    // `output_element_addr`.
    // TODO(@lukeboyer) make element byte size a template param.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    }
    
    // SyncPod is the transaction script for the sync of a single pod (setting up)
    // a pod. This method is reentrant and expected to converge a pod towards the
    // desired state of the spec. The reverse (teardown) is handled in
    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    a type <code>T</code>, or it may refer
    to a field or method <code>f</code> of a nested
    <a href="#Struct_types">embedded field</a> of <code>T</code>.
    The number of embedded fields traversed
    to reach <code>f</code> is called its <i>depth</i> in <code>T</code>.
    The depth of a field or method <code>f</code>
    declared in <code>T</code> is zero.
    The depth of a field or method <code>f</code> declared in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        "${NODE_TAG}-http-alt" \
        "${NODE_TAG}-nodeports"
      if [[ ${MULTIZONE:-} == "true" && -n ${E2E_ZONES:-} ]]; then
        local zones
        read -r -a zones <<< "${E2E_ZONES}"
        # tear them down in reverse order, finally tearing down the master too.
        for ((zone_num=${#zones[@]}-1; zone_num>0; zone_num--)); do
          KUBE_GCE_ZONE="${zones[zone_num]}" KUBE_USE_EXISTING_MASTER="true" "${KUBE_ROOT}/cluster/kube-down.sh"
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // If you are working in the directory containing the code imported as
    // "unicode" and want to run the tests for "unicode/utf8", you can type
    // "go test ./utf8" instead of needing to specify the full path.
    // Similarly, in the reverse situation, "go test .." will test "unicode" from
    // the "unicode/utf8" directory. Relative patterns are also allowed, like
    // "go test ./..." to test all subdirectories. See 'go help packages' for details
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top