Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for makeClass (0.22 sec)

  1. pkg/apis/storage/validation/validation_test.go

    		"no mode": {
    			class:         makeClass(nil, nil),
    			shouldSucceed: false,
    		},
    		"immediate mode": {
    			class:         makeClass(&immediateMode1, nil),
    			shouldSucceed: true,
    		},
    		"waiting mode": {
    			class:         makeClass(&waitingMode, nil),
    			shouldSucceed: true,
    		},
    		"invalid mode": {
    			class:         makeClass(&invalidMode, nil),
    			shouldSucceed: false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. hack/make-rules/test-integration.sh

      local ETCD_SCRAPE_PID # Set in kube::etcd::start_scraping, used in cleanup
      kube::etcd::start_scraping
      kube::log::status "Running integration test cases"
    
      # shellcheck disable=SC2034
      # KUBE_RACE and MAKEFLAGS are used in the downstream make, and we set them to
      # empty here to ensure that we aren't unintentionally consuming them from the
      # previous make invocation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. build/root/Makefile

    # Usage is described below with each target that respects these
    PRINT_HELP ?=
    WHAT ?=
    TESTS ?=
    BRANCH ?=
    
    # We don't need make's built-in rules.
    MAKEFLAGS += --no-builtin-rules
    # Be pedantic about undefined variables.
    MAKEFLAGS += --warn-undefined-variables
    .SUFFIXES:
    
    # Constants used throughout.
    .EXPORT_ALL_VARIABLES:
    OUT_DIR ?= _output
    BIN_DIR := $(OUT_DIR)/bin
    
    ifdef KUBE_GOFLAGS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top