Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for elim (0.36 sec)

  1. hack/lib/etcd.sh

        exit 1
      }
    
      # validate etcd port is free
      local port_check_command
      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    ## }
    ##
    check_minimum_version() {
    	IFS='.' read -r -a varray1 <<<"$1"
    	IFS='.' read -r -a varray2 <<<"$2"
    
    	for i in "${!varray1[@]}"; do
    		if [[ ${varray1[i]} -lt ${varray2[i]} ]]; then
    			return 0
    		elif [[ ${varray1[i]} -gt ${varray2[i]} ]]; then
    			return 1
    		fi
    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/trace/batchcursor_test.go

    	for i := range heap {
    		if heap[i].ev.time == 5 {
    			heap = heapRemove(heap, i)
    			break
    		}
    	}
    	checkHeap(t, heap)
    	for i := range heap {
    		if heap[i].ev.time == 5 {
    			t.Fatalf("failed to remove heap elem with time %d: %s", 5, heapDebugString(heap))
    		}
    	}
    
    	// Remove tail.
    	heap = heapRemove(heap, len(heap)-1)
    	checkHeap(t, heap)
    
    	// Remove from the head, and make sure the result is sorted.
    	l := len(heap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/reflect/badlinkname.go

    //go:linkname badlinkname_rtype_ConvertibleTo reflect.(*rtype).ConvertibleTo
    func badlinkname_rtype_ConvertibleTo(*rtype, Type) bool
    
    //go:linkname badlinkname_rtype_Elem reflect.(*rtype).Elem
    func badlinkname_rtype_Elem(*rtype) Type
    
    //go:linkname badlinkname_rtype_Field reflect.(*rtype).Field
    func badlinkname_rtype_Field(*rtype, int) StructField
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/runtime/export_debug_test.go

    		return nil, plainError("args must be a pointer or nil")
    	}
    	argp := a.data
    	var argSize uintptr
    	if argp != nil {
    		argSize = (*ptrtype)(unsafe.Pointer(a._type)).Elem.Size_
    	}
    
    	h := new(debugCallHandler)
    	h.gp = gp
    	// gp may not be running right now, but we can still get the M
    	// it will run on since it's locked.
    	h.mp = gp.lockedm.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. hack/ginkgo-e2e.sh

    case "${E2E_TEST_DEBUG_TOOL:-ginkgo}" in
      ginkgo)
        program=("${ginkgo}")
        if [[ -n "${GINKGO_PARALLEL_NODES:-}" ]]; then
          program+=("--nodes=${GINKGO_PARALLEL_NODES}")
        elif [[ ${GINKGO_PARALLEL} =~ ^[yY]$ ]]; then
          program+=("--nodes=25")
        fi
        program+=("${ginkgo_args[@]:+${ginkgo_args[@]}}")
        ;;
      delve) program=("dlv" "exec") ;;
      gdb) program=("gdb") ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/first-steps.md

        However, if you use the `pip install fastapi-slim` command, the `python-multipart` package is not included by default. To install it manually, use the following command:
    
        `pip install python-multipart`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top