Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for pivots (0.7 sec)

  1. pilot/pkg/networking/core/listener_test.go

    	telemetry "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/listenertest"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/networking/core/route"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/util/assert"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                      command:
                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
                      - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	clientsecurityv1beta1 "istio.io/client-go/pkg/apis/security/v1beta1"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	extensions "istio.io/api/extensions/v1alpha1"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    func (q *queue[T]) grow() {
    	if len(q.buf) == 0 {
    		q.buf = make([]T, 2)
    		return
    	}
    
    	// Create new buf and copy data over.
    	newBuf := make([]T, len(q.buf)*2)
    	pivot := q.start % len(q.buf)
    	first, last := q.buf[pivot:], q.buf[:pivot]
    	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
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    import (
    	"fmt"
    	"net"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"istio.io/api/label"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    	k8sbeta "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istio "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pilot/pkg/model/kstatus"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    type Passenger struct {
    	Name   []string `xml:"name"`
    	Weight float32  `xml:"weight"`
    }
    
    type Ship struct {
    	XMLName struct{} `xml:"spaceship"`
    
    	Name      string       `xml:"name,attr"`
    	Pilot     string       `xml:"pilot,attr"`
    	Drive     DriveType    `xml:"drive"`
    	Age       uint         `xml:"age"`
    	Passenger []*Passenger `xml:"passenger"`
    	secret    string
    }
    
    type NamedType string
    
    type Port struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top