Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ifeq (0.08 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. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    package unix
    
    import (
    	"unsafe"
    )
    
    // Helpers for dealing with ifreq since it contains a union and thus requires a
    // lot of unsafe.Pointer casts to use properly.
    
    // An Ifreq is a type-safe wrapper around the raw ifreq struct. An Ifreq
    // contains an interface name and a union of arbitrary data which can be
    // accessed using the Ifreq's methods. To create an Ifreq, use the NewIfreq
    // function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	return ByteSliceToString(value[:]), err
    }
    
    // IoctlIfreq performs an ioctl using an Ifreq structure for input and/or
    // output. See the netdevice(7) man page for details.
    func IoctlIfreq(fd int, req uint, value *Ifreq) error {
    	// It is possible we will add more fields to *Ifreq itself later to prevent
    	// misuse, so pass the raw *ifreq directly.
    	return ioctlPtr(fd, req, unsafe.Pointer(&value.raw))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/net/interface_aix.go

    	"syscall"
    	"unsafe"
    )
    
    type rawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [120]byte
    }
    
    type ifreq struct {
    	Name [16]uint8
    	Ifru [16]byte
    }
    
    const _KINFO_RT_IFLIST = (0x1 << 8) | 3 | (1 << 30)
    
    const _RTAX_NETMASK = 2
    const _RTAX_IFA = 5
    const _RTAX_MAX = 8
    
    func getIfList() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. tools/packaging/packaging.mk

    # fpm likes to add extremely high levels of compression. This is fine for release, but for local runs
    # where we are just pushing to a local registry (compressed again!), it adds ~1min to builds.
    ifneq ($(FAST_VM_BUILDS),)
    DEB_COMPRESSION=--deb-compression=none
    RPM_COMPRESSION=--rpm-compression=none
    endif
    
    # Base directory for istio binaries. Likely to change !
    ISTIO_DEB_BIN=/usr/local/bin
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top