Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for MakeFile (0.18 sec)

  1. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    [crypto]
    # The sample RSA public and private keys are used to generate different tokens for testing. They can be simply generated
    # with the command `make -f tools/certs/Makefile.selfsigned.mk sample-RSA`.
    pubkey = sample-RSA-public.pem
    privkey = sample-RSA-private.pem
    jwks =
    
    [services]
    jwt_tool_version = 2.2.3
    # To disable the proxy option set this value to: False (no quotes)
    proxy = False
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     	{
    @@ -332,6 +333,7 @@ unsetenv (const char *name)
     	}
           else
     	++ep;
    +  }
     
       UNLOCK;
     
    diff --git a/support/Makefile b/support/Makefile
    index a253698..2f4e2a9 100644
    --- a/support/Makefile
    +++ b/support/Makefile
    @@ -167,13 +167,6 @@ CFLAGS-support_paths.c = \
     		-DINSTDIR_PATH=\"$(prefix)\" \
     		-DLIBDIR_PATH=\"$(libdir)\"
     
    -ifeq (,$(CXX))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. operator/docker/Dockerfile.operator

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  5. 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)
  6. pilot/docker/Dockerfile.ztunnel

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  7. tools/skip-image.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -eu
    
    # This is a dedicated script to allow reference from script and makefile
    
    # Determine if we should skip an image
    # $1 = docker target
    # $2 = variant
    # We will filter out test image distroless variant; they do not need to support distroless
    if [[ $2 == "distroless" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 18:51:04 UTC 2020
    - 933 bytes
    - Viewed (0)
  8. bin/init.sh

    # limitations under the License.
    
    # Init script downloads or updates envoy and the go dependencies. Called from Makefile, which sets
    # the needed environment variables.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${TARGET_OUT_LINUX:-}" == "" ]]; then
      echo "Environment variables not set. Make sure you run through the makefile (\`make init\`) rather than directly."
      exit 1
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. CODEOWNERS

    /.gitattributes                                                  @istio/wg-test-and-release-maintainers
    /.gitignore                                                      @istio/wg-test-and-release-maintainers
    /Makefile.core.mk                                                @istio/wg-test-and-release-maintainers
    /bin/                                                            @istio/wg-test-and-release-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. hack/dev-build-and-push.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Build a dev release
    if ! make -f "${KUBE_ROOT}"/Makefile quick-release
    then
            echo "Building a release failed!"
            exit 1
    fi
    
    # Now push this out to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 22 00:39:55 UTC 2019
    - 987 bytes
    - Viewed (0)
Back to top