Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for esbuild (0.25 sec)

  1. bin/build_ztunnel.sh

      echo "Copying '${2}' to ${TARGET_OUT_LINUX}/ztunnel"
      cp -f "${2}" "${TARGET_OUT_LINUX}/ztunnel"
    }
    
    function maybe_build_ztunnel() {
      # TODO detect git changes or something to avoid unnecessarily building
      # BUILD_ZTUNNEL=1 with no BUILD_ZTUNNEL_REPO tries to infer BUILD_ZTUNNEL_REPO
      if [[ "${BUILD_ZTUNNEL_REPO:-}" == "" ]] && [[ "${BUILD_ZTUNNEL:-}" != "" ]]; then
        local ZTUNNEL_DIR
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 21:46:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. cni/pkg/plugin/sidecar_iptables_unspecified.go

    //go:build !linux
    // +build !linux
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/sds/util.go

    func (s *secretItemBuilder) State(state string) SecretItemBuilder {
    	s.state = state
    	return s
    }
    
    // Build takes the set fields from the builder and constructs the actual SecretItem
    // including generating the SecretMeta from the supplied cert data, if present
    func (s *secretItemBuilder) Build() (SecretItem, error) {
    	result := SecretItem{
    		Name:        s.name,
    		Data:        s.data,
    		Source:      s.source,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  4. cni/pkg/ipset/nldeps_unspecified.go

    //go:build !linux
    // +build !linux
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. cni/deployments/kubernetes/Dockerfile.install-cni

    # This version is from commit 86c4972a9f5f245cfb382c8e1e95f176d968c882.
    FROM ${ISTIO_BASE_REGISTRY}/iptables@sha256:87e7a5b30a2844e16363cdd3b6ff06565079627a592c95f5c0fc9aaa56366452 as distroless
    
    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    LABEL description="Istio CNI plugin installer."
    
    ARG TARGETARCH
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 21:40:24 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  6. common/Makefile.common.mk

    mirror-licenses: mod-download-go
    	@rm -fr licenses
    	@license-lint --mirror
    
    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Mar 02 20:07:36 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/testdata/config_dump.json

              "metadata": {
                "ISTIO_PROXY_SHA": "ee85c5f28702f00621aed895915fca565796b9e4",
                "ISTIO_VERSION": "1.21.0-1226",
                "metadata": {
                  "build.type": "RELEASE",
                  "build.label": "dev",
                  "revision.sha": "ee85c5f28702f00621aed895915fca565796b9e4",
                  "revision.status": "Clean",
                  "ssl.version": "BoringSSL"
                }
              }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  8. common/scripts/report_build_info.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    if BUILD_GIT_REVISION=$(git rev-parse HEAD 2> /dev/null); then
      if [[ -z "${IGNORE_DIRTY_TREE}" ]] && [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
        BUILD_GIT_REVISION=${BUILD_GIT_REVISION}"-dirty"
      fi
    else
      BUILD_GIT_REVISION=unknown
    fi
    
    # Check for local changes
    tree_status="Clean"
    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)
  9. Makefile.core.mk

    # that would need the Linux binaries (ex. tests).
    BUILD_DEPS:=
    ifeq ($(IN_BUILD_CONTAINER),1)
      ifneq ($(GOOS_LOCAL),"linux")
        BUILD_DEPS += build-linux
      endif
    endif
    
    export ARTIFACTS ?= $(TARGET_OUT)
    export JUNIT_OUT ?= $(ARTIFACTS)/junit.xml
    export REPO_ROOT := $(shell git rev-parse --show-toplevel)
    
    # Make directories needed by the build system
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  10. .devcontainer/devcontainer.json

    {
      "name": "istio build-tools",
      "image": "gcr.io/istio-testing/build-tools:master-8fb9ce88f6ad4cdd35c1660cd0ad0ab67eff4c6c",
      "privileged": true,
      "remoteEnv": {
        "USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
        "BUILD_WITH_CONTAINER": "0",
        "CARGO_HOME": "/home/.cargo",
        "RUSTUP_HOME": "/home/.rustup"
      },
      "features": {
        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
        "ghcr.io/mpriscella/features/kind:1": {}
      },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 879 bytes
    - Viewed (1)
Back to top