Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,878 for VERSION (0.06 sec)

  1. operator/pkg/version/version_test.go

    	tests := map[string]struct {
    		version Version
    		want    string
    	}{
    		"with suffix": {
    			version: NewVersion(1, 2, 3, "xyz"),
    			want:    "1.2.3-xyz",
    		},
    		"without suffix": {
    			version: NewVersion(1, 5, 0, ""),
    			want:    "1.5.0",
    		},
    	}
    	for name, tt := range tests {
    		t.Run(name, func(t *testing.T) {
    			got := tt.version.String()
    			if got != tt.want {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. pkg/config/schema/collections/collections.gen.go

    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== setting revision tag with version === ")
    	// Prepend ~ to the version, so that we can refer to the latest patch version of a minor version
    	template, err := h.Template(IstiodReleaseName+"-"+revision, RepoDiscoveryChartPath,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--version", "~"+version, "--repo", ctx.Settings().HelmRepo, "--set",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/config/resource/metadata_test.go

    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName: NewFullName("ns1", "rs1"),
    		Version:  Version("v1"),
    	}
    
    	c := m.Clone()
    	g.Expect(m).To(Equal(c))
    }
    
    func TestMetadata_Clone_NonNilMaps(t *testing.T) {
    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName:    NewFullName("ns1", "rs1"),
    		Version:     Version("v1"),
    		Annotations: map[string]string{"foo": "bar"},
    		Labels:      map[string]string{"l1": "l2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    	rootCmd.Flags().StringVar(&globalArgs.ZtunnelVersion, "ztunnel-version", globalArgs.ZtunnelVersion, "ztunnel version to use")
    	rootCmd.Flags().StringVar(&globalArgs.IstioVersion, "istio-version", globalArgs.IstioVersion, "istio version to use")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/configdump.go

    		statusKey     = "revision.status"
    		sslVersionKey = "ssl.version"
    	)
    
    	var (
    		buildVersion = bootstrapDump.GetBootstrap().GetNode().GetUserAgentBuildVersion()
    		version      = buildVersion.GetVersion()
    		md           = buildVersion.GetMetadata().GetFields()
    
    		sb strings.Builder
    	)
    
    	fmt.Fprintf(&sb, "%d.%d.%d", version.GetMajorNumber(), version.GetMinorNumber(), version.GetPatch())
    	if label, ok := md[buildLabelKey]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pilot/pkg/status/distribution/reporter.go

    	defer r.mu.Unlock()
    	key := GenStatusReporterMapKey(conID, distributionType)
    	r.deleteKeyFromReverseMap(key)
    	var version string
    	if len(nonce) > 12 {
    		version = nonce[:xds.VersionLen]
    	} else {
    		version = nonce
    	}
    	// touch
    	r.status[key] = version
    	sets.InsertOrNew(r.reverseStatus, version, key)
    }
    
    // This is a helper function for keeping our reverseStatus map in step with status.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/test/echo/response.go

    	RawContent string
    	// ID is a unique identifier of the resource in the response
    	ID string
    	// URL is the url the request is sent to
    	URL string
    	// Version is the version of the resource in the response
    	Version string
    	// Port is the port of the resource in the response
    	Port string
    	// Code is the response code
    	Code string
    	// Host is the host called by the request
    	Host string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. pkg/version/version_linux_test.go

    // limitations under the License.
    
    package version
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/monitoring/monitortest"
    )
    
    func TestRecordComponentBuildTag(t *testing.T) {
    	cases := []struct {
    		name    string
    		in      BuildInfo
    		wantTag string
    	}{
    		{
    			"record",
    			BuildInfo{
    				Version:       "VER",
    				GitRevision:   "GITREV",
    				GolangVersion: "GOLANGVER",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 23:36:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. operator/cmd/operator/root.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: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top