Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for pivots (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/model/push_context_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	securityBeta "istio.io/api/security/v1beta1"
    	selectorpb "istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	istionetworking "istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"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: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvk"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    	"time"
    
    	fuzz "github.com/google/gofuzz"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top