Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for multierror (0.22 sec)

  1. istioctl/pkg/metrics/metrics.go

    	var me *multierror.Error
    	var err error
    	sm := workloadMetrics{workload: workload}
    	sm.totalRPS, err = vectorValue(promAPI, rpsQuery)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    
    	sm.errorRPS, err = vectorValue(promAPI, errRPSQuery)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/util/stats.go

    // limitations under the License.
    
    package util
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"strconv"
    	"strings"
    	"time"
    
    	multierror "github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/http"
    )
    
    const (
    	statCdsRejected    = "cluster_manager.cds.update_rejected"
    	statsCdsSuccess    = "cluster_manager.cds.update_success"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/builder.go

    package kube
    
    import (
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    func Build(ctx resource.Context, configs []echo.Config) (echo.Instances, error) {
    	instances := make([]echo.Instance, len(configs))
    
    	g := multierror.Group{}
    	for i, cfg := range configs {
    		i, cfg := i, cfg
    		g.Go(func() (err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/util/traffic/result.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package traffic
    
    import (
    	"bytes"
    	"fmt"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    // Result of a traffic generation operation.
    type Result struct {
    	TotalRequests      int
    	SuccessfulRequests int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/server/server.go

    // limitations under the License.
    
    package server
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"net/http"
    
    	multierror "github.com/hashicorp/go-multierror"
    	admissionv1 "k8s.io/api/admission/v1"
    	kubeApiAdmissionv1beta1 "k8s.io/api/admission/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/check/visitor.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package check
    
    import (
    	"fmt"
    
    	"github.com/hashicorp/go-multierror"
    
    	echoClient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/util/istiomultierror"
    )
    
    // Visitor is performs a partial check operation on a single message.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 28 23:06:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. pkg/config/labels/instance.go

    func (i Instance) Validate() error {
    	if i == nil {
    		return nil
    	}
    	var errs error
    	for k, v := range i {
    		if err := validateTagKey(k); err != nil {
    			errs = multierror.Append(errs, err)
    		}
    		if !labelValueRegexp.MatchString(v) {
    			errs = multierror.Append(errs, fmt.Errorf("invalid tag value: %q", v))
    		}
    	}
    	return errs
    }
    
    // IsDNS1123Label tests for a string that conforms to the definition of a label in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/schema/validation_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    package schema
    
    import (
    	"fmt"
    	"testing"
    
    	"github.com/hashicorp/go-multierror"
    	. "github.com/onsi/gomega"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/msg"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/workload_manager.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kube
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"sync"
    
    	"github.com/hashicorp/go-multierror"
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/config/protocol"
    	echoCommon "istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/gatewayclass.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package gateway
    
    import (
    	"github.com/hashicorp/go-multierror"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	k8sv1 "sigs.k8s.io/gateway-api/apis/v1"
    	gateway "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top