Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for xxxx01 (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/map_test.go

    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"xxxx":                   "x4val",
    		"xxxxx":                  "x5val",
    		"xxxxxx":                 "x6val",
    		strings.Repeat("x", 128): "longval",
    	})
    }
    
    func testMapLookups(t *testing.T, m map[string]string) {
    	for k, v := range m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/helper_test.go

    	// Testing of Blackhole and Passthrough clusters:
    	// Setup of environment:
    	// 1. client and destination are deployed to app-1-XXXX namespace
    	// 2. client is restricted to talk to destination via Sidecar scope where outbound policy is set (ALLOW_ANY, REGISTRY_ONLY)
    	//    and clients' egress can only be to service-2-XXXX/* and istio-system/*
    	// 3. a namespace service-2-YYYY is created
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. 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)
  7. hack/update-vendor.sh

    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-vendor.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::util::require-jq
    
    TMP_DIR="${TMP_DIR:-$(mktemp -d /tmp/update-vendor.XXXX)}"
    LOG_FILE="${LOG_FILE:-${TMP_DIR}/update-vendor.log}"
    kube::log::status "logfile at ${LOG_FILE}"
    
    # Set up some FDs for this script to use, while capturing everything else to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. docs/batch-jobs/README.md

    	  #     value: "image/*" # match objects with 'content-type', with all values starting with 'image/'
    
    	notify:
    	  endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    	  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 Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/mpallocbits.go

    	// All uint64s must be nonzero, or we would have aborted above.
    outer:
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    
    		// Look inside this uint64. We have a pattern like
    		// 000000 1xxxxx1 000000
    		// We need to look inside the 1xxxxx1 for any contiguous
    		// region of zeros.
    
    		// We already know the trailing zeros are no larger than max. Remove them.
    		x >>= sys.TrailingZeros64(x) & 63
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/compile/GroovyCompileOptionsTest.groovy

            assertEquals(compileOptions.forkOptions.memoryMaximumSize, '1g')
        }
    
        @Test
        void testDefine() {
            compileOptions.verbose = false
            compileOptions.encoding = 'xxxx'
            compileOptions.fork = false
            compileOptions.parameters = true
            compileOptions.define( encoding: 'encoding')
            assertEquals('encoding', compileOptions.encoding)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top