Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for ifeq (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/net/http/client.go

    					host = req.Host
    				}
    			}
    			ireq := reqs[0]
    			req = &Request{
    				Method:   redirectMethod,
    				Response: resp,
    				URL:      u,
    				Header:   make(Header),
    				Host:     host,
    				Cancel:   ireq.Cancel,
    				ctx:      ireq.ctx,
    			}
    			if includeBody && ireq.GetBody != nil {
    				req.Body, err = ireq.GetBody()
    				if err != nil {
    					resp.closeBody()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/service_test.go

    			isEq := WorkloadInstancesEqual(testCase.comparer, testCase.comparee)
    			isEqReverse := WorkloadInstancesEqual(testCase.comparee, testCase.comparer)
    
    			if isEq != isEqReverse {
    				t.Errorf(
    					"returned different for reversing arguments for structs: %v , and %v",
    					testCase.comparer,
    					testCase.comparee,
    				)
    			}
    			if isEq != testCase.shouldEq {
    				t.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/syscall/zsysctl_openbsd.go

    	{"net.inet.ip.encdebug", []_C_int{4, 2, 0, 12}},
    	{"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}},
    	{"net.inet.ip.ifq.congestion", []_C_int{4, 2, 0, 30, 4}},
    	{"net.inet.ip.ifq.drops", []_C_int{4, 2, 0, 30, 3}},
    	{"net.inet.ip.ifq.len", []_C_int{4, 2, 0, 30, 1}},
    	{"net.inet.ip.ifq.maxlen", []_C_int{4, 2, 0, 30, 2}},
    	{"net.inet.ip.maxqueue", []_C_int{4, 2, 0, 11}},
    	{"net.inet.ip.mforwarding", []_C_int{4, 2, 0, 31}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top