Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for 0bxxxxx (0.74 sec)

  1. pkg/volume/util/fsquota/common/quota_common_linux.go

    	FSQuotaAccounting QuotaType = 1 << iota
    	// FSQuotaEnforcing for quotas for enforcement
    	FSQuotaEnforcing QuotaType = 1 << iota
    )
    
    // FirstQuota is the quota ID we start with.
    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. hack/lib/verify-generated.sh

        # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
        kube::golang::setup_env
    
        _tmpdir="$(kube::realpath "$(mktemp -d -t "verify-generated-$(basename "$1").XXXXXX")")"
        git worktree add -f -q "${_tmpdir}" HEAD
        kube::util::trap_add "git worktree remove -f ${_tmpdir}" EXIT
        cd "${_tmpdir}"
    
        # Update generated files.
        "$@"
    
        # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. hack/lib/etcd.sh

    }
    
    kube::etcd::start() {
      # validate before running
      kube::etcd::validate
    
      # Start etcd
      ETCD_DIR=${ETCD_DIR:-$(mktemp -d 2>/dev/null || mktemp -d -t test-etcd.XXXXXX)}
      if [[ -d "${ARTIFACTS:-}" ]]; then
        ETCD_LOGFILE="${ARTIFACTS}/etcd.$(uname -n).$(id -un).log.DEBUG.$(date +%Y%m%d-%H%M%S).$$"
      else
        ETCD_LOGFILE=${ETCD_LOGFILE:-"/dev/null"}
      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)
  4. hack/serve-prom-scrapes.sh

    if (( $# != 2 )); then
        echo "Usage: $0 port_num scrapes_dir" >&2
        exit 1
    fi
    
    port_num="$1"
    scrapes_dir="$2"
    response_file="/tmp/$(cd /tmp && mktemp  response.XXXXXX)"
    
    cleanup_serve() {
        rm -rf "$response_file"
    }
    
    trap cleanup_serve EXIT
    
    chmod +r "$response_file"
    
    transform() {
        path="$1"
        base="$(basename "$path")"
        seconds="${base%.scrape}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. cmd/batch-expire_test.go

              # retainVersions: 5 # keep the latest 5 versions of the object including delete markers.
    
      notify:
        endpoint: https://notify.endpoint # notification endpoint to receive job completion status
        token: Bearer xxxxx # optional authentication token for the notification endpoint
      
      retry:
        attempts: 10 # number of retries for the job before giving up
        delay: 500ms # least amount of delay between each retry
    `
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/regexp/testdata/basic.dat

    NOTE	all standard compliant implementations should pass these : 2002-05-31
    
    BE	abracadabra$	abracadabracadabra	(7,18)
    BE	a...b		abababbb		(2,7)
    BE	XXXXXX		..XXXXXX		(2,8)
    E	\)		()	(1,2)
    BE	a]		a]a	(0,2)
    B	}		}	(0,1)
    E	\}		}	(0,1)
    BE	\]		]	(0,1)
    B	]		]	(0,1)
    E	]		]	(0,1)
    B	{		{	(0,1)
    B	}		}	(0,1)
    BE	^a		ax	(0,1)
    BE	\^a		a^a	(1,3)
    BE	a\^		a^	(0,2)
    BE	a$		aa	(1,2)
    BE	a\$		a$	(0,2)
    BE	^$		NULL	(0,0)
    E	$^		NULL	(0,0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. hack/verify-vendor.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # create a nice clean place to put our new vendor tree
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    
    if [[ -z ${KEEP_TMP:-} ]]; then
        KEEP_TMP=false
    fi
    
    function cleanup {
      # make go module dirs writeable
      chmod -R +w "${_tmpdir}"
      if [ "${KEEP_TMP}" == "true" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. hack/update-mocks.sh

    echo 'executing go generate command on below files'
    
    git_grep -l -z "//go:generate mockgen" | while read -r -d $'\0' file; do
      echo "- ${file}"
      temp_file_name="$(kube::realpath "$(mktemp -t "$(basename "$0").XXXXXX")")"
    
      # search for build tag used in file
      build_tag_string=$(grep -o '+build.*$' "$file") || true
    
      # if the file does not have build string
      if [ -n "$build_tag_string" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. release/downloadIstioCtl.sh

    download_failed () {
      printf "Download failed, please make sure your ISTIO_VERSION is correct and verify the download URL exists!"
      exit 1
    }
    
    # Downloads the istioctl binary archive.
    tmp=$(mktemp -d /tmp/istioctl.XXXXXX)
    NAME="istioctl-${ISTIO_VERSION}"
    
    URL="https://github.com/istio/istio/releases/download/${ISTIO_VERSION}/istioctl-${ISTIO_VERSION}-${OSEXT}.tar.gz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. hack/update-openapi-spec.sh

        fi
        unset APISERVER_PID
    
        kube::etcd::cleanup
    
        kube::log::status "Clean up complete"
    }
    
    trap cleanup EXIT SIGINT
    
    TMP_DIR=${TMP_DIR:-$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")}
    ETCD_HOST=${ETCD_HOST:-127.0.0.1}
    ETCD_PORT=${ETCD_PORT:-2379}
    API_PORT=${API_PORT:-8050}
    API_HOST=${API_HOST:-127.0.0.1}
    API_LOGFILE=${API_LOGFILE:-${TMP_DIR}/openapi-api-server.log}
    
    kube::etcd::start
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top