Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for z$ (0.04 sec)

  1. cmd/storage-datatypes_gen.go

    	o = msgp.AppendUint64(o, z.Total)
    	o = msgp.AppendUint64(o, z.Free)
    	o = msgp.AppendUint64(o, z.Used)
    	o = msgp.AppendUint64(o, z.UsedInodes)
    	o = msgp.AppendUint64(o, z.FreeInodes)
    	o = msgp.AppendUint32(o, z.Major)
    	o = msgp.AppendUint32(o, z.Minor)
    	o = msgp.AppendUint64(o, z.NRRequests)
    	o = msgp.AppendString(o, z.FSType)
    	o = msgp.AppendBool(o, z.RootDisk)
    	o = msgp.AppendBool(o, z.Healing)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // x - (C - z) -> x + (z - C) -> (x + z) - C
    (Sub64 x (Sub64 i:(Const64 <t>) z)) && (z.Op != OpConst64 && x.Op != OpConst64) => (Sub64 (Add64 <t> x z) i)
    (Sub32 x (Sub32 i:(Const32 <t>) z)) && (z.Op != OpConst32 && x.Op != OpConst32) => (Sub32 (Add32 <t> x z) i)
    (Sub16 x (Sub16 i:(Const16 <t>) z)) && (z.Op != OpConst16 && x.Op != OpConst16) => (Sub16 (Add16 <t> x z) i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    				ab.asmando(ctxt, cursym, p, &p.From, int(o.op[z+2]))
    
    			case Zvex_i_rm_vo:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				ab.asmando(ctxt, cursym, p, p.GetFrom3(), int(o.op[z+2]))
    				ab.Put1(byte(p.From.Offset))
    
    			case Zvex_i_r_v:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				regnum := byte(0x7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    ((Equal|NotEqual) (CMP x z:(NEG y))) && z.Uses == 1 => ((Equal|NotEqual) (CMN x y))
    
    // CMPW(x,-y) -> CMNW(x,y) is only valid for unordered comparison, if y can be -1<<31
    ((EQ|NE) (CMPW x z:(NEG y)) yes no)   && z.Uses == 1 => ((EQ|NE) (CMNW x y) yes no)
    ((Equal|NotEqual) (CMPW x z:(NEG y))) && z.Uses == 1 => ((Equal|NotEqual) (CMNW x y))
    
    // For conditional instructions such as CSET, CSEL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    }
    
    # validates the NODE_LOCAL_SSDS_EXT variable
    function validate-node-local-ssds-ext(){
      ssdopts="${1}"
    
      if [[ -z "${ssdopts[0]}" || -z "${ssdopts[1]}" || -z "${ssdopts[2]}" ]]; then
        echo -e "${color_red}Local SSD: NODE_LOCAL_SSDS_EXT is malformed, found ${ssdopts[0]-_},${ssdopts[1]-_},${ssdopts[2]-_} ${color_norm}" >&2
        exit 2
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      # this is not true on GKE
      if [[ -n "${CA_KEY:-}" ]]; then
        CA_KEY_PATH="${pki_dir}/ca.key"
        write-pki-data "${CA_KEY}" "${CA_KEY_PATH}"
      fi
    
      if [[ -z "${APISERVER_SERVER_CERT:-}" || -z "${APISERVER_SERVER_KEY:-}" ]]; then
        APISERVER_SERVER_CERT="${MASTER_CERT}"
        APISERVER_SERVER_KEY="${MASTER_KEY}"
      fi
    
      APISERVER_SERVER_CERT_PATH="${pki_dir}/apiserver.crt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.listMap.exists(m, has(m.v2) && m.v2 == 'z')",
    				"!self.listMap.all(m, has(m.v2) && m.v2 != 'z')",
    				"self.listMap.exists_one(m, has(m.v2) && m.v2 == 'z')",
    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').size() == 1",
    				// undocumented overload of map that takes a filter argument. This is the same as .filter().map()
    				"self.listMap.map(m, has(m.v2) && m.v2 == 'z', m.v2).size() == 1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	// https://golang.org/issue/19003
    	var x unsafe.Pointer
    	var y = &x
    	var z = &y
    
    	var i int
    
    	typ := TypeOf(z)
    	for i = 0; i < 100; i++ {
    		typ = PointerTo(typ)
    	}
    	for i = 0; i < 100; i++ {
    		typ = typ.Elem()
    	}
    	if typ != TypeOf(z) {
    		t.Errorf("after 100 PointerTo and Elem, have %s, want %s", typ, TypeOf(z))
    	}
    }
    
    func TestPtrToGC(t *testing.T) {
    	type T *uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    //
    // Define “new” code as code with a go.mod file in the same directory
    // or a parent directory. If an import in new code says x/y/v2/z but
    // x/y/v2/z does not exist and x/y/go.mod says “module x/y/v2”,
    // then go build will read the import as x/y/z instead.
    // See golang.org/issue/25069.
    func moduleImportPath(path, parentPath, parentDir, parentRoot string) (found string) {
    	if parentRoot == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.ForceUnlockAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	z, ok := objectAPI.(*erasureServerPools)
    	if !ok {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrNotImplemented), r.URL)
    		return
    	}
    
    	vars := mux.Vars(r)
    
    	var args dsync.LockArgs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top