Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Fmask (0.17 sec)

  1. cluster/gce/gci/configure-helper.sh

      local path="${2}"
      # remove the path if it exists
      rm -f "${path}"
      if [[ -n "${KUBE_PKI_READERS_GROUP:-}" ]]; then
        (umask 027; echo "${data}" | base64 --decode > "${path}")
        chgrp "${KUBE_PKI_READERS_GROUP:-}" "${path}"
        chmod g+r "${path}"
      else
        (umask 077; echo "${data}" | base64 --decode > "${path}")
      fi
    }
    
    function create-node-pki {
      echo "Creating node pki files"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    
    	sval := ldr.SymValue(s)
    	if !decodetypeUsegcprog(p.ctxt.Arch, typData) {
    		// Copy pointers from mask into program.
    		mask := decodetypeGcmask(p.ctxt, typ)
    		for i := int64(0); i < nptr; i++ {
    			if (mask[i/8]>>uint(i%8))&1 != 0 {
    				p.w.Ptr(sval/ptrsize + i)
    			}
    		}
    		return
    	}
    
    	// Copy program.
    	prog := decodetypeGcprog(p.ctxt, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    		n = 10
    
    	default:
    		return ws.ErrHeaderLengthUnexpected
    	}
    
    	if f.Header.Masked {
    		bts[1] |= bit0
    		n += copy(bts[n:], f.Header.Mask[:])
    	}
    
    	if _, err := w.Write(bts[:n]); err != nil {
    		return err
    	}
    
    	_, err := w.Write(f.Payload)
    	return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/time/format.go

    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    // std0x records the std values for "01", "02", ..., "06".
    var std0x = [...]int{stdZeroMonth, stdZeroDay, stdZeroHour12, stdZeroMinute, stdZeroSecond, stdYear}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. src/math/big/float.go

    	if m > n {
    		copy(z.mant, z.mant[m-n:]) // move n last words to front
    		z.mant = z.mant[:n]
    	}
    
    	// determine number of trailing zero bits (ntz) and compute lsb mask of mantissa's least-significant word
    	ntz := n*_W - z.prec // 0 <= ntz < _W
    	lsb := Word(1) << ntz
    
    	// round if result is inexact
    	if rbit|sbit != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
      export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
      export CA_CERT="${CERT_DIR}/pki/ca.crt"
      export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
      (
       umask 077
    
       # Update the user's kubeconfig to include credentials for this apiserver.
       create-kubeconfig
      )
    
      # ensures KUBECONFIG is set
      get-kubeconfig-basicauth
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    (ROTL   x (MOVDconst [c])) => (ROTLconst   x [c&63])
    
    // Combine rotate and mask operations
    (ANDconst [m] (ROTLWconst [r] x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,m,32)] x)
    (AND (MOVDconst [m]) (ROTLWconst [r] x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,m,32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      [IO.File]::WriteAllBytes($File, [Convert]::FromBase64String($Data))
      Log_Todo ("need to set permissions correctly on ${File}; not sure what the " +
                "Windows equivalent of 'umask 077' is")
      # Linux: owned by root, rw by user only.
      #   -rw------- 1 root root 1.2K Oct 12 00:56 ca-certificates.crt
      #   -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value n_plus_y = rewriter.create<AddOp>(loc, iotaN, y);
    
        // GatherOp is happy about letting us index out of bounds values, but those
        // values will be undefined. So we mask them later. Set up the boolean
        // expression that tells us which entries, in the output shape, are out of
        // bounds and thus become the padding_value.
        Value x_in_bounds = rewriter.create<AndOp>(
            loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. RELEASE.md

     * If you use masked losses with Keras the loss values may be different in TensorFlow `2.12` compared to previous versions.
     * In cases where the mask was previously ignored, you will now get an error if you pass a mask with an incompatible shape.
    
    ### Major Features and Improvements
    
    `tf.keras`:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top