Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for multiError (0.13 sec)

  1. pkg/kube/inject/watcher.go

    // limitations under the License.
    
    package inject
    
    import (
    	"context"
    	"fmt"
    	"path/filepath"
    	"time"
    
    	"github.com/fsnotify/fsnotify"
    	"github.com/hashicorp/go-multierror"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/watcher/configmapwatcher"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/instances.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package echo
    
    import (
    	"errors"
    	"sort"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    )
    
    var _ Target = Instances{}
    
    // Instances contains the instances created by the builder with methods for filtering
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/kubeinject.go

    }
    
    func validateFlags() error {
    	var err error
    	if inFilename == "" {
    		err = multierror.Append(err, errors.New("filename not specified (see --filename or -f)"))
    	}
    	if meshConfigFile == "" && meshConfigMapName == "" && iopFilename == "" {
    		err = multierror.Append(err,
    			errors.New("--meshConfigFile or --meshConfigMapName or --operatorFileName must be set"))
    	}
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package tag
    
    import (
    	"context"
    	"fmt"
    
    	"github.com/hashicorp/go-multierror"
    	admitv1 "k8s.io/api/admissionregistration/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/kubernetes"
    
    	"istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/util"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pkg/test/framework/scope.go

    //  limitations under the License.
    
    package framework
    
    import (
    	"fmt"
    	"io"
    	"reflect"
    	"sync"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // scope hold resources in a particular scope.
    type scope struct {
    	// friendly name for the scope for debugging purposes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/check/checkers.go

    		for k, v := range expected {
    			outErr = multierror.Append(outErr, requestHeader(r, k, v))
    		}
    		return outErr.ErrorOrNil()
    	})
    }
    
    func ResponseHeaders(expected map[string]string) echo.Checker {
    	return Each(func(r echoClient.Response) error {
    		outErr := istiomultierror.New()
    		for k, v := range expected {
    			outErr = multierror.Append(outErr, responseHeader(r, k, v))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. pkg/test/echo/server/instance.go

    //  limitations under the License.
    
    package server
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"net/http"
    	"net/netip"
    	"os"
    	"strings"
    	"sync"
    	"sync/atomic"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/test/echo/common"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/config/schema/collection/schemas.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package collection
    
    import (
    	"fmt"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/hashicorp/go-multierror"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 08:10:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/authz/kube.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authz
    
    import (
    	"fmt"
    	"os"
    	"strings"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crd/conversion.go

    // limitations under the License.
    
    package crd
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"io"
    	"reflect"
    
    	"github.com/hashicorp/go-multierror"
    	"gopkg.in/yaml.v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubeyaml "k8s.io/apimachinery/pkg/util/yaml"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top