Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 977 for pivots (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

                pivots.push(i);
              }
            }
          } catch (error) {}
        }
        if (pivots.length == 0) {
          pivots.push(0);
        }
        return pivots;
      }
    
      // render re-generates the stack display.
      function render() {
        pivots = urlPivots();
    
        // Get places where pivots occur.
        let places = [];
        for (let pivot of pivots) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/snapshot.go

    	s.havePodsWithRequiredAntiAffinityNodeInfoList = havePodsWithRequiredAntiAffinityNodeInfoList
    	s.usedPVCSet = createUsedPVCSet(pods)
    
    	return s
    }
    
    // createNodeInfoMap obtains a list of pods and pivots that list into a map
    // where the keys are node names and the values are the aggregated information
    // for that node.
    func createNodeInfoMap(pods []*v1.Pod, nodes []*v1.Node) map[string]*framework.NodeInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/sort/zsortfunc.go

    			breakPatterns_func(data, a, b)
    			limit--
    		}
    
    		pivot, hint := choosePivot_func(data, a, b)
    		if hint == decreasingHint {
    			reverseRange_func(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  4. src/slices/zsortanyfunc.go

    			limit--
    		}
    
    		pivot, hint := choosePivotCmpFunc(data, a, b, cmp)
    		if hint == decreasingHint {
    			reverseRangeCmpFunc(data, a, b, cmp)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. src/sort/zsortinterface.go

    			breakPatterns(data, a, b)
    			limit--
    		}
    
    		pivot, hint := choosePivot(data, a, b)
    		if hint == decreasingHint {
    			reverseRange(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. src/slices/zsortordered.go

    			breakPatternsOrdered(data, a, b)
    			limit--
    		}
    
    		pivot, hint := choosePivotOrdered(data, a, b)
    		if hint == decreasingHint {
    			reverseRangeOrdered(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/sort/gen_sort_variants.go

    			limit--
    		}
    
    		pivot, hint := choosePivot{{.FuncSuffix}}(data, a, b {{.ExtraArg}})
    		if hint == decreasingHint {
    			reverseRange{{.FuncSuffix}}(data, a, b {{.ExtraArg}})
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    		"PILOT_REMOTE_CLUSTER_TIMEOUT",
    		30*time.Second,
    		"After this timeout expires, pilot can become ready without syncing data from clusters added via remote-secrets. "+
    			"Setting the timeout to 0 disables this behavior.",
    	).Get()
    
    	DisableMxALPN = env.Register("PILOT_DISABLE_MX_ALPN", false,
    		"If true, pilot will not put istio-peer-exchange ALPN into TLS handshake configuration.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pilot/docker/Dockerfile.pilot

    FROM ${BASE_DISTRIBUTION:-debug}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-discovery /usr/local/bin/pilot-discovery
    
    # Copy templates for bootstrap generation.
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    COPY gcp_envoy_bootstrap.json /var/lib/istio/envoy/gcp_envoy_bootstrap_tmpl.json
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/pilot.libsonnet

    local queries = (import './queries.libsonnet').queries({
      container: 'discovery',
      pod: 'istiod-.*',
      component: 'pilot',
      app: 'istiod',
    });
    
    dashboard.new('Istio Control Plane Dashboard')
    + g.dashboard.withPanels(
      grid.makeGrid([
        row.new('Deployed Versions')
        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
        ]),
      ], panelHeight=5)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top