Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Abbrevs (0.14 sec)

  1. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	}}
    	r.Else = &ast.BlockStmt{List: []ast.Stmt{
    		pvacfgvisitnode(pvacfg, "DW_TAG_formal_parameter", []*pvacfgnode{}, abbrevs),
    	}}
    	return r
    }
    
    func pvacfgvisitnode(pvacfg *pvacfgnode, tag string, path []*pvacfgnode, abbrevs map[string]int) ast.Stmt {
    	if pvacfg == nil {
    		abbrev := toabbrev(tag, path)
    		if _, ok := abbrevs[abbrev]; !ok {
    			abbrevs[abbrev] = len(abbrevs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    	}
    	return uint8(expandedForm)
    }
    
    // Abbrevs returns the finalized abbrev array for the platform,
    // expanding any DW_FORM pseudo-ops to real values.
    func Abbrevs() []dwAbbrev {
    	if abbrevsFinalized {
    		return abbrevs
    	}
    	abbrevs = append(abbrevs, putvarAbbrevs...)
    	for i := 1; i < len(abbrevs); i++ {
    		for j := 0; j < len(abbrevs[i].attr); j++ {
    			abbrevs[i].attr[j].form = expandPseudoForm(abbrevs[i].attr[j].form)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. docker-buildx.sh

    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

            val rootProjectDir: DirectoryProperty
        }
    
        @get:Inject
        abstract val providers: ProviderFactory
    
        val gitCommitId = git("rev-parse", "HEAD")
        val gitBranch = git("rev-parse", "--abbrev-ref", "HEAD")
    
        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    // attribute (but it will only be written out if it is listed in the abbrev).
    // The compiler does create nameless DWARF DIEs (ex: concrete subprogram
    // instance).
    // FIXME: it would be more efficient to bulk-allocate DIEs.
    func (d *dwctxt) newdie(parent *dwarf.DWDie, abbrev int, name string) *dwarf.DWDie {
    	die := new(dwarf.DWDie)
    	die.Abbrev = abbrev
    	die.Link = parent.Child
    	parent.Child = die
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/time/zoneinfo_read.go

    		var b byte
    		if b, ok = zonedata.byte(); !ok {
    			return nil, errBadData
    		}
    		zones[i].isDST = b != 0
    		if b, ok = zonedata.byte(); !ok || int(b) >= len(abbrev) {
    			return nil, errBadData
    		}
    		zones[i].name = byteString(abbrev[b:])
    		if runtime.GOOS == "aix" && len(name) > 8 && (name[:8] == "Etc/GMT+" || name[:8] == "Etc/GMT-") {
    			// There is a bug with AIX 7.2 TL 0 with files in Etc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. Makefile

        sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
    	$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
    
    hotfix: hotfix-vars clean install ## builds minio binary with hotfix tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. hack/lib/version.sh

            KUBE_GIT_TREE_STATE="dirty"
          fi
        fi
    
        # Use git describe to find the version based on tags.
        if [[ -n ${KUBE_GIT_VERSION-} ]] || KUBE_GIT_VERSION=$("${git[@]}" describe --tags --match='v*' --abbrev=14 "${KUBE_GIT_COMMIT}^{commit}" 2>/dev/null); then
          # This translates the "git describe" to an actual semver.org
          # compatible semantic version that looks something like this:
          #   v1.1.0-alpha.0.6+84c76d1142ea4d
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. prow/lib.sh

          fi
        else
          export GIT_SHA="${PULL_PULL_SHA}"
        fi
      else
        # Use the current commit.
        GIT_SHA="$(git rev-parse --verify HEAD)"
        export GIT_SHA
      fi
      GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
      export GIT_BRANCH
      setup_gcloud_credentials
    }
    
    # Download and unpack istio release artifacts.
    function download_untar_istio_release() {
      local url_path=${1}
      local tag=${2}
      local dir=${3:-.}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/internal/xcoff/file.go

    		if s != nil {
    			b, err := s.Data()
    			if err != nil && uint64(len(b)) < s.Size {
    				return nil, err
    			}
    			dat[i] = b
    		}
    	}
    
    	abbrev, info, line, ranges, str := dat[0], dat[1], dat[2], dat[3], dat[4]
    	return dwarf.New(abbrev, nil, nil, info, line, nil, ranges, str)
    }
    
    // readImportID returns the import file IDs stored inside the .loader section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top