Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for MakeFile (0.12 sec)

  1. build/root/Makefile

    # limitations under the License.
    
    DBG_MAKEFILE ?=
    ifeq ($(DBG_MAKEFILE),1)
        $(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
        $(warning ***** $(shell date))
    else
        # If we're not debugging the Makefile, don't echo recipes.
        MAKEFLAGS += -s
    endif
    
    
    # Old-skool build tools.
    #
    # Commonly used targets (see each target for more information):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. Makefile

    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. cluster/images/etcd/Makefile

    cpanato <******@****.***> 1717690383 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. Makefile.core.mk

    # If GOPATH is not set by the env, set it to a sane value
    GOPATH ?= $(shell cd ${ISTIO_GO}/../../..; pwd)
    export GOPATH
    
    # If GOPATH is made up of several paths, use the first one for our targets in this Makefile
    GO_TOP := $(shell echo ${GOPATH} | cut -d ':' -f1)
    export GO_TOP
    
    GO ?= go
    
    GOARCH_LOCAL := $(TARGET_ARCH)
    GOOS_LOCAL := $(TARGET_OS)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. build/dependencies.yaml

        #  match: DEFAULT_NPD_VERSION
    
      # From https://github.com/etcd-io/etcd/blob/main/Makefile
      - name: "golang: etcd release version"
        version: 1.21.10 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
    
      # Golang
      - name: "golang: upstream version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tools/docker-builder/types.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // Types mirrored from https://github.com/docker/buildx/blob/master/bake/bake.go
    type Group struct {
    	Targets []string `json:"targets" hcl:"targets"`
    }
    
    type BakeFile struct {
    	Target map[string]Target `json:"target,omitempty"`
    	Group  map[string]Group  `json:"group,omitempty"`
    }
    
    type Target struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. pkg/volume/hostpath/host_path.go

    		return false
    	}
    	pathType, err := ftc.hu.GetFileType(ftc.path)
    	if err != nil {
    		return false
    	}
    	return string(pathType) == string(v1.HostPathFile)
    }
    
    func (ftc *fileTypeChecker) MakeFile() error {
    	return makeFile(ftc.path)
    }
    
    func (ftc *fileTypeChecker) IsDir() bool {
    	if !ftc.Exists() {
    		return false
    	}
    	pathType, err := ftc.hu.GetFileType(ftc.path)
    	if err != nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. tools/docker-builder/main.go

    		// Otherwise, build just the single item. proxyv2 is special since it is always built separately with tag=agent.
    		// Ideally we would just always build the targets we need but our Makefile is not that smart
    		env = append(env, "BUILD_ALL=false")
    	}
    
    	env = append(env,
    		// Build should already run in container, having multiple layers of docker causes issues
    		"BUILD_WITH_CONTAINER=0",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    		fuzzDir := cache.Default().FuzzDir()
    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe_test.go

          "y": "HX1rdVwFy7NAsLcWtmt0D9IxtbwmU3oDJfji9T4ZXDs"
        }
      ]
    }`
    
    	// validRootCertFile, validIntCertFile and validWorkloadCertFile are in a certification chain.
    	// They are generated using tools/certs/Makefile. Replace "cluster.local" with "foo.domain.com"
    	// export INTERMEDIATE_DAYS=3650
    	// export WORKLOAD_DAYS=3650
    	// make foo-certs-selfSigned
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top