Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for buildVersion (0.21 sec)

  1. operator/cmd/mesh/operator-dump.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    type operatorDumpArgs struct {
    	// common is shared operator args
    	common operatorCommonArgs
    }
    
    func addOperatorDumpFlags(cmd *cobra.Command, args *operatorDumpArgs) {
    	hub, tag := buildversion.DockerInfo.Hub, buildversion.DockerInfo.Tag
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/version/version.go

    	return fmt.Sprintf("%#v", b)
    }
    
    func init() {
    	Info = BuildInfo{
    		Version:       buildVersion,
    		GitRevision:   buildGitRevision,
    		GolangVersion: runtime.Version(),
    		BuildStatus:   buildStatus,
    		GitTag:        buildTag,
    	}
    
    	DockerInfo = DockerBuildInfo{
    		Hub:  buildHub,
    		Tag:  buildVersion,
    		OS:   buildOS,
    		Arch: buildArch,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. operator/version/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package version
    
    import (
    	"time"
    
    	pkgversion "istio.io/istio/operator/pkg/version"
    	buildversion "istio.io/istio/pkg/version"
    )
    
    const (
    	// OperatorCodeBaseVersion is the version string from the code base.
    	OperatorCodeBaseVersion = "1.23.0"
    	OperatorEOLYear         = 2025
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-init.go

    // kubeClients is a unit test override variable for client interfaces creation.
    var kubeClients = KubernetesClients
    
    func addOperatorInitFlags(cmd *cobra.Command, args *operatorInitArgs) {
    	hub, tag := buildversion.DockerInfo.Hub, buildversion.DockerInfo.Tag
    
    	cmd.PersistentFlags().StringVarP(&args.inFilename, "filename", "f", "", filenameFlagHelpStr)
    	cmd.PersistentFlags().StringVar(&args.common.hub, "hub", hub, HubFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/configdump.go

    		buildTypeKey  = "build.type"
    		statusKey     = "revision.status"
    		sslVersionKey = "ssl.version"
    	)
    
    	var (
    		buildVersion = bootstrapDump.GetBootstrap().GetNode().GetUserAgentBuildVersion()
    		version      = buildVersion.GetVersion()
    		md           = buildVersion.GetMetadata().GetFields()
    
    		sb strings.Builder
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. common/scripts/report_build_info.sh

      tree_status="Modified"
    fi
    
    GIT_DESCRIBE_TAG=$(git describe --tags --always)
    HUB=${HUB:-"docker.io/istio"}
    
    # used by common/scripts/gobuild.sh
    echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}"
    echo "istio.io/istio/pkg/version.buildGitRevision=${BUILD_GIT_REVISION}"
    echo "istio.io/istio/pkg/version.buildStatus=${tree_status}"
    echo "istio.io/istio/pkg/version.buildTag=${GIT_DESCRIBE_TAG}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    	} else {
    		addstrdata1(ctxt, "runtime.defaultGOROOT="+buildcfg.GOROOT)
    	}
    
    	buildVersion := buildcfg.Version
    	if goexperiment := buildcfg.Experiment.String(); goexperiment != "" {
    		buildVersion += " X:" + goexperiment
    	}
    	addstrdata1(ctxt, "runtime.buildVersion="+buildVersion)
    
    	// TODO(matloob): define these above and then check flag values here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	if s != "" {
    		return s
    	}
    	return defaultGOROOT
    }
    
    // buildVersion is the Go tree's version string at build time.
    //
    // If any GOEXPERIMENTs are set to non-default values, it will include
    // "X:<GOEXPERIMENT>".
    //
    // This is set by the linker.
    //
    // This is accessed by "go version <binary>".
    var buildVersion string
    
    // Version returns the Go tree's version string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo.go

    	// The first 14 bytes are buildInfoMagic.
    	// The next two bytes indicate pointer size in bytes (4 or 8) and endianness
    	// (0 for little, 1 for big).
    	// Two virtual addresses to Go strings follow that: runtime.buildVersion,
    	// and runtime.modinfo.
    	// On 32-bit platforms, the last 8 bytes are unused.
    	// If the endianness has the 2 bit set, then the pointers are zero
    	// and the 32-byte header is followed by varint-prefixed string data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    			}
    			if base+heapArenaBytes > arenaEnd {
    				arenaEnd = base + heapArenaBytes
    			}
    		}
    	}
    	dumpint(uint64(arenaStart))
    	dumpint(uint64(arenaEnd))
    	dumpstr(goarch.GOARCH)
    	dumpstr(buildVersion)
    	dumpint(uint64(ncpu))
    }
    
    func itab_callback(tab *itab) {
    	t := tab.Type
    	dumptype(t)
    	dumpint(tagItab)
    	dumpint(uint64(uintptr(unsafe.Pointer(tab))))
    	dumpint(uint64(uintptr(unsafe.Pointer(t))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top