Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 247 for Mathis (0.12 sec)

  1. pkg/config/analysis/incluster/controller.go

    			index[key] = append(index[key], m)
    		}
    		// if we previously had a message that has been removed, ensure it is removed
    		// TODO: this creates a state destruction problem when istiod crashes
    		// in that old messages may not be removed.  Not sure how to fix this
    		// other than write every object's status every loop.
    		for _, a := range res.ExecutedAnalyzers {
    			for _, m := range oldmsgs[a] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conditions.go

    			continue
    		}
    		// We found our highest priority ranking, now we need to collapse this into a single message
    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion.go

    }
    
    // IsAutoPassthrough determines if a listener should use auto passthrough mode. This is used for
    // multi-network. In the Istio API, this is an explicit tls.Mode. However, this mode is not part of
    // the gateway-api, and leaks implementation details. We already have an API to declare a Gateway as
    // a multi-network gateway, so we will use this as a signal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. security/pkg/pki/ra/k8s_ra.go

    // 1. root cert is specified in mesh config and is empty in signed cert chain, in this case
    // we verify the signed cert chain against the root cert from mesh config and append the
    // root cert into the cert chain.
    // 2. root cert is specified in mesh config and also can be extracted in signed cert chain, in this
    // case we verify the signed cert chain against the root cert from mesh config and append it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. pkg/kube/client.go

    //
    // To optimize this, this function performs exponential backoff. This is generally safe because
    // cache.InformerSynced functions are ~always quick to run. However, if the sync functions do perform
    // expensive checks this function may not be suitable.
    func WaitForCacheSync(name string, stop <-chan struct{}, cacheSyncs ...cache.InformerSynced) (r bool) {
    	t0 := time.Now()
    	max := time.Millisecond * 100
    	delay := time.Millisecond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. operator/version/version.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kube/multicluster/secretcontroller.go

    func (c *Controller) Run(stopCh <-chan struct{}) error {
    	// run handlers for the config cluster; do not store this *Cluster in the ClusterStore or give it a SyncTimeout
    	// this is done outside the goroutine, we should block other Run/startFuncs until this is registered
    	c.configClusterSyncers = c.handleAdd(c.configCluster)
    	go func() {
    		t0 := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/run.go

    				}
    				testFn(ctx, from, filteredDst)
    			})
    		})
    	})
    }
    
    // RunFromClusters will generate and run one subtest to send traffic to
    // destination instance. This is for ingress gateway testing when source instance
    // destination instances. This can be used when we're not using echo workloads
    // as the source of traffic, such as from the ingress gateway. For example:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. pkg/test/util/assert/assert.go

    // cmpOptioner can be implemented to provide custom options that should be used when comparing a type.
    // Warning: this is no recursive, unfortunately. So a type `A{B}` cannot rely on `B` implementing this to customize comparing `B`.
    type cmpOptioner interface {
    	CmpOpts() []cmp.Option
    }
    
    // opts gets the comparison opts for a type. This includes some defaults, but allows each type to explicitly append their own.
    func opts[T any](a T) []cmp.Option {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/kube/krt/index.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top