Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 586 for pivots (1.52 sec)

  1. pilot/pkg/bootstrap/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package bootstrap
    
    import (
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/ledger"
    )
    
    func hasKubeRegistry(registries []string) bool {
    	for _, r := range registries {
    		if provider.ID(r) == provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/rds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type RdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/memory/controller_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package memory_test
    
    import (
    	"sync/atomic"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/test/mock"
    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    const (
    	// TestNamespace specifies the namespace for testing
    	TestNamespace = "istio-memory-test"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 18 15:37:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/telemetry/telemetry.go

    // limitations under the License.
    
    package telemetry
    
    import (
    	"strconv"
    	"strings"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config/host"
    )
    
    var (
    	// StatName patterns
    	serviceStatPattern           = "%SERVICE%"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/fuzz_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package builder
    
    import (
    	"testing"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/security/trustdomain"
    	"istio.io/istio/pkg/fuzz"
    )
    
    func FuzzBuildHTTP(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		bundle := fuzz.Struct[trustdomain.Bundle](fg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/grpcready/probe.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package grpcready
    
    import (
    	"fmt"
    	"sync"
    
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    )
    
    var _ ready.Prober = &probe{}
    
    type probe struct {
    	sync.RWMutex
    	bootstrapPath string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 28 16:58:31 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/file_snapshot.go

    		domainSuffix:     domainSuffix,
    		configTypeFilter: make(map[config.GroupVersionKind]bool),
    	}
    
    	ss := schemas.All()
    	if len(ss) == 0 {
    		ss = collections.Pilot.All()
    	}
    
    	for _, k := range ss {
    		if _, ok := collections.Pilot.FindByGroupVersionKind(k.GroupVersionKind()); ok {
    			snapshot.configTypeFilter[k.GroupVersionKind()] = true
    		}
    	}
    
    	return snapshot
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/cds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type CdsGenerator struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
      #
      # Address where istio Pilot service is running
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/serviceentry_simulation_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    package core_test
    
    import (
    	"fmt"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    const se = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se1
    spec:
      hosts:
      - blah.somedomain
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top