Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for krt (0.21 sec)

  1. pkg/kube/krt/singleton.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"sync/atomic"
    
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/ptr"
    )
    
    // dummyValue is a placeholder value for use with dummyCollection.
    type dummyValue struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/kube/krt/filter.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/util/smallset"
    )
    
    type filter struct {
    	keys smallset.Set[string]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/kube/krt/informer.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kube/krt/internal.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"fmt"
    	"reflect"
    
    	"go.uber.org/atomic"
    	"google.golang.org/protobuf/proto"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/api/type/v1beta1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			return networkID
    		},
    	})
    	cl.RunAndWait(test.NewStop(t))
    
    	t.Cleanup(func() {
    		if t.Failed() {
    			idx := idx.(*index)
    			krt.Dump(idx.authorizationPolicies)
    			krt.Dump(idx.workloads.Collection)
    			krt.Dump(idx.services.Collection)
    			krt.Dump(idx.waypoints.Collection)
    		}
    	})
    	a := &ambientTestServer{
    		t:         t,
    		clusterID: clusterID,
    		network:   networkID,
    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. pkg/kube/krt/collection.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    import (
    	"fmt"
    	"sync"
    
    	"istio.io/istio/pkg/kube/controllers"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top