Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for It (0.02 sec)

  1. manifests/charts/istiod-remote/Chart.yaml

    apiVersion: v2
    name: istiod-remote
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for a remote cluster using an external istio control plane
    keywords:
      - istio
      - external-istiod
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 419 bytes
    - Viewed (0)
  2. cni/pkg/plugin/sidecar_iptables_linux.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import (
    	"fmt"
    
    	"github.com/containernetworking/plugins/pkg/ns"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-iptables/pkg/cmd"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/config/kube/conversion.go

    		case "kubernetes.io/h2c":
    			return protocol.HTTP2
    		}
    	}
    
    	// Check if the port name prefix is "grpc-web". Need to do this before the general
    	// prefix check below, since it contains a hyphen.
    	if len(name) >= grpcWebLen && strings.EqualFold(name[:grpcWebLen], grpcWeb) {
    		return protocol.GRPCWeb
    	}
    
    	// Parse the port name to find the prefix, if any.
    	i := strings.IndexByte(name, '-')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/server.go

    // Note that if the ipset already exist by name, Create will not return an error.
    //
    // We will unconditionally flush our set before use here, so it shouldn't matter.
    func createHostsideProbeIpset(isV6 bool) (ipset.IPSet, error) {
    	linDeps := ipset.RealNlDeps()
    	probeSet, err := ipset.NewIPSet(iptables.ProbeIPSet, isV6, linDeps)
    	if err != nil {
    		return probeSet, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/kube/krt/internal.go

    // registerDependency is an internal interface for things that can register dependencies.
    // This is called from Fetch to Collections, generally.
    type registerDependency interface {
    	// Registers a dependency, returning true if it is finalized
    	registerDependency(*dependency, Syncer, func(f erasedEventHandler))
    	name() string
    }
    
    // tryGetKey returns the Key for an object. If not possible, returns false
    func tryGetKey[O any](a O) (Key[O], bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/waypoint.go

    // Waypoints typically only have inbound clusters, except in cases where we have a route from
    // a service owned by the waypoint to a service not owned by the waypoint.
    // It looks at:
    // * referencedServices: all services referenced by mesh virtual services
    // * waypointServices: all services owned by this waypoint
    // * extraServices: extra services required by the waypoint (extensions configured, etc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/kube/kclient/crdwatcher_test.go

    		assert.Equal(t, s, stop)
    		calls.Inc()
    	}), false)
    
    	c.RunAndWait(stop)
    
    	// Still not ready
    	assert.Equal(t, calls.Load(), 0)
    
    	// Upgrade it to v1.1, which is allowed
    	clienttest.MakeCRDWithAnnotations(t, c, gvr.GRPCRoute, map[string]string{
    		consts.BundleVersionAnnotation: "v1.1.0",
    	})
    	assert.EventuallyEqual(t, calls.Load, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/workload.go

    		if addresses == nil {
    			addresses = sets.New[string]()
    		}
    		addresses.Merge(additional)
    	}
    
    	// TODO: it is needlessly wasteful to do a full sync just because the rest of Istio thought it was "full"
    	// The rest of Istio xDS types would treat `req.Full && len(req.ConfigsUpdated) == 0` as a need to trigger a "full" push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	})
    	idx := indexOf("-j", params)
    	// We have identified the type of command this is and logging is enabled. Insert a rule to log this chain was hit.
    	// Since this is insert we do this *after* the real chain, which will result in it bumping it forward
    	if rb.cfg.TraceLogging && idx >= 0 && command != log.UndefinedCommand {
    		match := params[:idx]
    		// 1337 group is just a random constant to be matched on the log reader side
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. tests/fuzz/oss_fuzz_build.sh

    # Create empty file that imports "github.com/AdamKorcz/go-118-fuzz-build/testing"
    # This is a small hack to install this dependency, since it is not used anywhere,
    # and Go would therefore remove it from go.mod once we run "go mod tidy && go mod vendor".
    printf "package main\nimport _ \"github.com/AdamKorcz/go-118-fuzz-build/testing\"\n" > register.go
    go mod tidy
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top