Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for ifeq (0.04 sec)

  1. tests/integration/tests.mk

    ifneq ($(CI),)
    	_INTEGRATION_TEST_FLAGS += --istio.test.ci
    	_INTEGRATION_TEST_FLAGS += --istio.test.pullpolicy=IfNotPresent
    endif
    
    ifeq ($(TEST_ENV),kind)
        _INTEGRATION_TEST_FLAGS += --istio.test.kube.loadbalancer=false
    endif
    
    ifeq ($(shell uname -m),aarch64)
        _INTEGRATION_TEST_FLAGS += --istio.test.kube.architecture=arm64
    endif
    
    ifneq ($(ARTIFACTS),)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. build/root/Makefile

    #     to "-s -w" which strips debug information.
    endef
    .PHONY: all
    ifeq ($(PRINT_HELP),y)
    all:
    	echo "$$ALL_HELP_INFO"
    else
    all:
    	hack/make-rules/build.sh $(WHAT)
    endif
    
    define GINKGO_HELP_INFO
    # Build ginkgo
    #
    # Example:
    # make ginkgo
    endef
    .PHONY: ginkgo
    ifeq ($(PRINT_HELP),y)
    ginkgo:
    	echo "$$GINKGO_HELP_INFO"
    else
    ginkgo:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. cluster/images/etcd/Makefile

    DOCKERFILE.windows = Dockerfile.windows
    DOCKERFILE := ${DOCKERFILE.${OS}}
    
    ifeq ($(ARCH),amd64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm64:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),ppc64le)
    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

    SHELL := /bin/bash -o pipefail
    
    # Version can be defined:
    # (1) in a $VERSION shell variable, which takes precedence; or
    # (2) in the VERSION file, in which we will append "-dev" to it
    ifeq ($(VERSION),)
    VERSION_FROM_FILE := $(shell cat VERSION)
    ifeq ($(VERSION_FROM_FILE),)
    $(error VERSION not detected. Make sure it's stored in the VERSION file or defined in VERSION variable)
    endif
    VERSION := $(VERSION_FROM_FILE)-dev
    endif
    
    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. cluster/addons/addon-manager/Makefile

    ifneq ($(ARCH),amd64)
    	# Register /usr/bin/qemu-ARCH-static as the handler for non-x86 binaries in the kernel
    	$(SUDO) ../../../third_party/multiarch/qemu-user-static/register/register.sh --reset
    endif
    
    	docker build --pull -t $(IMAGE)-$(ARCH):$(VERSION) $(TEMP_DIR) --build-arg BASEIMAGE=$(BASEIMAGE)
    
    push: build
    	docker push $(IMAGE)-$(ARCH):$(VERSION)
    ifeq ($(ARCH),amd64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. Makefile.overrides.mk

    BUILD_WITH_CONTAINER ?= 1
    CONTAINER_OPTIONS = --mount type=bind,source=/tmp,destination=/tmp --net=host
    
    export COMMONFILES_POSTPROCESS = tools/commonfiles-postprocess.sh
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    # create phony targets for the top-level items in the repo
    PHONYS := $(shell ls | grep -v Makefile)
    .PHONY: $(PHONYS)
    $(PHONYS):
    	@$(MAKE_DOCKER) $@
    endif
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. Makefile

    # docker. If you'd rather build with a local tool chain instead, you'll need to
    # figure out all the tools you need in your environment to make that work.
    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    # An export free of arguments in a Makefile places all variables in the Makefile into the
    # environment. This is needed to allow overrides from Makefile.overrides.mk.
    export
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

            super.visitJumpInsn(IFNONNULL, label);
        }
    
        public void _IFNULL(Label label) {
            super.visitJumpInsn(IFNULL, label);
        }
    
        public void _IFEQ(Label label) {
            super.visitJumpInsn(IFEQ, label);
        }
    
        public void _GOTO(Label label) {
            super.visitJumpInsn(GOTO, label);
        }
    
        public void _ARETURN() {
            super.visitInsn(ARETURN);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    _IFEQ(next);
    
                    _ALOAD(0);
                    _INVOKEVIRTUAL(SERIALIZED_LAMBDA_TYPE, "getImplMethodSignature", RETURN_STRING);
                    _LDC(implHandle.getDesc());
                    _INVOKEVIRTUAL(OBJECT_TYPE, "equals", RETURN_BOOLEAN_FROM_OBJECT);
                    _IFEQ(next);
                    // SerializedLambda check takes at most 36 bytes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    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))
    -LINKS_DSO_PROGRAM = links-dso-program-c
    -else
    -LINKS_DSO_PROGRAM = links-dso-program
    -LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind)
    -endif
    -
     LDLIBS-test-container = $(libsupport)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top