Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for multierror (0.2 sec)

  1. tests/integration/operator/switch_cr_test.go

    		context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    		err = multierror.Append(err, e)
    	}
    	if e := cs.Kube().CoreV1().ConfigMaps(IstioNamespace).DeleteCollection(
    		context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    		err = multierror.Append(err, e)
    	}
    	if err != nil {
    		scopes.Framework.Errorf("failed to cleanup dynamically created resources: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/errors/wrap_test.go

    		{&errorUncomparable{}, err1, false},
    		{multiErr{}, err1, false},
    		{multiErr{err1, err3}, err1, true},
    		{multiErr{err3, err1}, err1, true},
    		{multiErr{err1, err3}, errors.New("x"), false},
    		{multiErr{err3, errb}, errb, true},
    		{multiErr{err3, errb}, erra, true},
    		{multiErr{err3, errb}, err1, true},
    		{multiErr{errb, err3}, err1, true},
    		{multiErr{poser}, err1, true},
    		{multiErr{poser}, err3, true},
    		{multiErr{nil}, nil, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/wasm/imagefetcher.go

    	v1 "github.com/google/go-containerregistry/pkg/v1"
    	"github.com/google/go-containerregistry/pkg/v1/remote"
    	"github.com/google/go-containerregistry/pkg/v1/types"
    	"github.com/hashicorp/go-multierror"
    )
    
    // This file implements the fetcher of "Wasm Image Specification" compatible container images.
    // The spec is here https://github.com/solo-io/wasm/blob/master/spec/README.md.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/conversion.go

    // limitations under the License.
    
    package ingress
    
    import (
    	"errors"
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    	corev1 "k8s.io/api/core/v1"
    	knetworking "k8s.io/api/networking/v1"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package agent
    
    import (
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/deployment.go

    // limitations under the License.
    
    package kube
    
    import (
    	"context"
    	"fmt"
    	"net/netip"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    	"text/template"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	appsv1 "k8s.io/api/apps/v1"
    	corev1 "k8s.io/api/core/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/kubernetes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. pkg/wasm/convert.go

    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/envoyproxy/go-control-plane/pkg/conversion"
    	"github.com/hashicorp/go-multierror"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pkg/bootstrap"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/util/istiomultierror"
    )
    
    var (
    	allowHTTPTypedConfig = &anypb.Any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/istiod_analyze.go

    	for _, r := range readers {
    		by, err := io.ReadAll(r.Reader)
    		if err != nil {
    			errs = multierror.Append(errs, err)
    			continue
    		}
    
    		if err = src.ApplyContent(r.Name, string(by)); err != nil {
    			errs = multierror.Append(errs, err)
    		}
    	}
    	return errs
    }
    
    // AddRunningKubeSource adds a source based on a running k8s cluster to the current IstiodAnalyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/network.go

    // limitations under the License.
    
    package model
    
    import (
    	"cmp"
    	"fmt"
    	"net"
    	"sort"
    	"sync"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/istiomultierror"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    package kube
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"fmt"
    	"io"
    	"net/http"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"go.uber.org/atomic"
    	"golang.org/x/sync/errgroup"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top