Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for buildversion (0.2 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
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  2. 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)
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. 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
    	)
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 20:46:41 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  4. 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}"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    	for _, line := range lines {
    		key, val, ok := strings.Cut(string(line), ": ")
    		if !ok {
    			continue
    		}
    		switch key {
    		case "ProductVersion":
    			iosVer = val
    		case "BuildVersion":
    			buildVer = val
    		}
    	}
    	if iosVer == "" || buildVer == "" {
    		return "", errors.New("failed to parse ideviceinfo output")
    	}
    	verSplit := strings.Split(iosVer, ".")
    	if len(verSplit) > 2 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    	})
    }
    
    // TestLDFlags checks whether building mesh command with
    // -ldflags "-X istio.io/istio/pkg/version.buildHub=myhub -X istio.io/istio/pkg/version.buildVersion=mytag"
    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    	defer func() {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            try (BuildSession bs = new BuildSession(request, false)) {
                return bs.build(artifact, allowStubModel);
            }
        }
    
        @Override
        public List<ProjectBuildingResult> build(List<File> pomFiles, boolean recursive, ProjectBuildingRequest request)
                throws ProjectBuildingException {
            try (BuildSession bs = new BuildSession(request, true)) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 55.4K bytes
    - Viewed (0)
Back to top