Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GitTag (0.17 sec)

  1. operator/cmd/mesh/install.go

    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    			if icp.Revision != revision {
    				continue
    			}
    			tagVer, err := GetTagVersion(icp.Info.GitTag)
    			if err != nil {
    				return err
    			}
    			icpTags = append(icpTags, tagVer)
    		}
    		// sort different versions of control plane revisions
    		sort.Strings(icpTags)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/kube/client.go

    		if serverInfo.GitRevision == "dirty" {
    			serverInfo.GitRevision = strings.Join([]string{versionParts[nParts-3], "dirty"}, "-")
    			serverInfo.Version = strings.Join(versionParts[:nParts-3], "-")
    		}
    		serverInfo.GitTag = serverInfo.Version
    	} else {
    		serverInfo.Version = istioInfo
    	}
    }
    
    func SetRevisionForTest(c CLIClient, rev string) CLIClient {
    	tc := c.(*client)
    	tc.revision = rev
    	return tc
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    	iexportVersionGo1_18   = 2
    
    	iexportVersionCurrent = 2
    )
    
    type ident struct {
    	pkg  *types.Package
    	name string
    }
    
    const predeclReserved = 32
    
    type itag uint64
    
    const (
    	// Types
    	definedType itag = iota
    	pointerType
    	sliceType
    	arrayType
    	chanType
    	mapType
    	signatureType
    	structType
    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    func (c *LocalFileCache) getEntry(key cacheKey, ignoreResourceVersion bool) (*cacheEntry, string) {
    	cacheHit := false
    
    	c.mux.Lock()
    	defer func() {
    		c.mux.Unlock()
    		wasmCacheLookupCount.With(hitTag.Value(strconv.FormatBool(cacheHit))).Increment()
    	}()
    
    	if len(key.checksum) == 0 && strings.HasPrefix(key.downloadURL, ociURLPrefix) {
    		if d, err := name.NewDigest(key.downloadURL[len(ociURLPrefix):]); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top