Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for NV (0.03 sec)

  1. src/database/sql/convert.go

    	_ "unsafe" // for linkname
    )
    
    var errNilPtr = errors.New("destination pointer is nil") // embedded in descriptive error
    
    func describeNamedValue(nv *driver.NamedValue) string {
    	if len(nv.Name) == 0 {
    		return fmt.Sprintf("$%d", nv.Ordinal)
    	}
    	return fmt.Sprintf("with name %q", nv.Name)
    }
    
    func validateNamedValueName(name string) error {
    	if len(name) == 0 {
    		return nil
    	}
    	r, _ := utf8.DecodeRuneInString(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    		bugLogIf(ctx, errInvalidArgument)
    		return errInvalidArgument
    	}
    
    	nv := make(textproto.MIMEHeader, len(v))
    	for k, kv := range v {
    		// Canonicalize all headers, to remove any duplicates.
    		nv[http.CanonicalHeaderKey(k)] = kv
    	}
    
    	// Save all supported headers.
    	for _, supportedHeader := range supportedHeaders {
    		value, ok := nv[http.CanonicalHeaderKey(supportedHeader)]
    		if ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    		if inv.Patch > -1 {
    			if r := compareVersion(pversion.Patch, inv.Patch); r != 0 {
    				return r
    			}
    		}
    	}
    	return 0
    }
    
    func compareVersion(ov, nv int) int {
    	if ov == nv {
    		return 0
    	}
    	if ov < nv {
    		return -1
    	}
    	return 1
    }
    
    var NodeTypes = [...]NodeType{SidecarProxy, Router, Waypoint, Ztunnel}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  4. cmd/storage-datatypes.go

    	ReplicationState ReplicationState `msg:"rs"` // Internal replication state to be passed back in ObjectInfo
    
    	Data []byte `msg:"d,allownil"` // optionally carries object data
    
    	NumVersions      int       `msg:"nv"`
    	SuccessorModTime time.Time `msg:"smt"`
    
    	Fresh bool `msg:"fr"` // indicates this is a first time call to write FileInfo.
    
    	// Position of this version or object in a multi-object delete call,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		}
    	}
    	if len(args) == arrow+3 {
    		nv, err = parseVersion(verb, ns, &args[arrow+2], fix)
    		if err != nil {
    			return nil, wrapError(err)
    		}
    		if IsDirectoryPath(ns) {
    			return nil, errorf("replacement module directory path %q cannot have version", ns)
    		}
    	}
    	return &Replace{
    		Old:    module.Version{Path: s, Version: v},
    		New:    module.Version{Path: ns, Version: nv},
    		Syntax: line,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/util.go

    }
    
    var armCondCode = []string{
    	".EQ",
    	".NE",
    	".CS",
    	".CC",
    	".MI",
    	".PL",
    	".VS",
    	".VC",
    	".HI",
    	".LS",
    	".GE",
    	".LT",
    	".GT",
    	".LE",
    	"",
    	".NV",
    }
    
    /* ARM scond byte */
    const (
    	C_SCOND     = (1 << 4) - 1
    	C_SBIT      = 1 << 4
    	C_PBIT      = 1 << 5
    	C_WBIT      = 1 << 6
    	C_FBIT      = 1 << 7
    	C_UBIT      = 1 << 7
    	C_SCOND_XOR = 14
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-rebalance.go

    	NumObjects        uint64        `json:"numObjects" msg:"no"`         // Number of objects rebalanced
    	NumVersions       uint64        `json:"numVersions" msg:"nv"`        // Number of versions rebalanced
    	Bytes             uint64        `json:"bytes" msg:"bs"`              // Number of bytes rebalanced
    	Participating     bool          `json:"participating" msg:"par"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  8. cmd/data-usage-cache.go

    			NumObjects:  st.NumObjects,
    		}
    	}
    	return
    }
    
    // tierStats holds per-tier stats of a remote tier.
    type tierStats struct {
    	TotalSize   uint64 `msg:"ts"`
    	NumVersions int    `msg:"nv"`
    	NumObjects  int    `msg:"no"`
    }
    
    func (ts tierStats) add(u tierStats) tierStats {
    	return tierStats{
    		TotalSize:   ts.TotalSize + u.TotalSize,
    		NumVersions: ts.NumVersions + u.NumVersions,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top