Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mkstemp (0.62 sec)

  1. src/reflect/value.go

    					intToReg(&methodRegs, mStep.ireg, mStep.size, from)
    				case abiStepFloatReg:
    					floatToReg(&methodRegs, mStep.freg, mStep.size, from)
    				default:
    					panic("unexpected method step")
    				}
    			}
    			continue
    		}
    		// Handle register -> stack translation.
    		if mStep := methodSteps[0]; mStep.kind == abiStepStack {
    			for _, vStep := range valueSteps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    # Set up easy-rsa directory structure.
    #
    # Assumed vars
    #   KUBE_TEMP
    #
    # Vars set:
    #   CERT_DIR
    #   AGGREGATOR_CERT_DIR
    function setup-easyrsa {
      local -r cert_create_debug_output=$(mktemp "${KUBE_TEMP}/cert_create_debug_output.XXX")
      # Note: This was heavily cribbed from make-ca-cert.sh
      (set -x
        cd "${KUBE_TEMP}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    function append_or_replace_prefixed_line {
      local -r file="${1:-}"
      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
      local -r dirname=$(dirname "${file}")
      local -r tmpfile=$(mktemp "${dirname}/filtered.XXXX")
    
      touch "${file}"
      awk -v pfx="${prefix}" 'substr($0,1,length(pfx)) != pfx { print }' "${file}" > "${tmpfile}"
      echo "${prefix}${suffix}" >> "${tmpfile}"
      mv "${tmpfile}" "${file}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    			}); err != nil {
    				replLogIf(ctx, fmt.Errorf("Unable to heal service account %s from peer site %s -> %s : %w", user, latestPeerName, peerName, err))
    			}
    			continue
    		}
    		if creds.IsTemp() && !creds.IsExpired() {
    			var parentPolicy string
    			u, err := globalIAMSys.GetUserInfo(ctx, creds.ParentUser)
    			if err != nil {
    				// Parent may be "virtual" (for ldap, oidc, client tls auth,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "$0") WD=$(cd "$WD"; pwd) set -eux # This script sets up the plain text rendered deployments for addons # See samples/addons/README.md for more information ADDONS="${WD}/../../samples/addons" DASHBOARDS="${WD}/dashboards" mkdir -p "${ADDONS}" TMP=$(mktemp -d) LOKI_VERSION=${LOKI_VERSION:-"4.8.0"} GRAFANA_VERSION=${GRAFANA_VERSION:-"6.61.1"} # Set up kiali { helm3 template kiali-server \ --namespace istio-system \ --version 1.76.0 \ --set deployment.image_version=v1.76 \ --include-crds \ --set nameOverride=kiali...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top