Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dV (0.08 sec)

  1. .github/CODEOWNERS

    platforms/core-execution/build-cache/                       @gradle/bt-execution @gradle/bt-dv-build-cache
    platforms/core-execution/build-cache-base/                  @gradle/bt-execution @gradle/bt-dv-build-cache
    platforms/core-execution/build-cache-http/                  @gradle/bt-execution @gradle/bt-dv-build-cache
    platforms/core-execution/build-cache-packaging/             @gradle/bt-execution @gradle/bt-dv-build-cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/database/sql/convert.go

    		sv = reflect.ValueOf(src)
    	}
    
    	dv := reflect.Indirect(dpv)
    	if sv.IsValid() && sv.Type().AssignableTo(dv.Type()) {
    		switch b := src.(type) {
    		case []byte:
    			dv.Set(reflect.ValueOf(bytes.Clone(b)))
    		default:
    			dv.Set(sv)
    		}
    		return nil
    	}
    
    	if dv.Kind() == sv.Kind() && sv.Type().ConvertibleTo(dv.Type()) {
    		dv.Set(sv.Convert(dv.Type()))
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/internal/profile/graph.go

    // there isn't such an edge one is created.
    func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) {
    	if e := n.Out.FindTo(to); e != nil {
    		e.WeightDiv += dv
    		e.Weight += v
    		if residual {
    			e.Residual = true
    		}
    		if !inline {
    			e.Inline = false
    		}
    		return
    	}
    
    	info := &Edge{Src: n, Dest: to, WeightDiv: dv, Weight: v, Residual: residual, Inline: inline}
    	n.Out.Add(info)
    	to.In.Add(info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare.go

    		default: // target path type does not match
    			return fmt.Errorf("targetPath '%v' does not exist in obj: "+
    				"'%v' type is not map[string]interface{}", targetPath, nname)
    		}
    	}
    
    	for dk, dv := range cur {
    		switch vnode := dv.(type) {
    		case string:
    			vo := make(map[string]any)
    			if err := yaml.Unmarshal([]byte(vnode), &vo); err != nil {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. migrator/migrator.go

    			case schema.Time:
    				if !strings.EqualFold(strings.TrimSuffix(dv, "()"), strings.TrimSuffix(field.DefaultValue, "()")) {
    					alterColumn = true
    				}
    			case schema.Bool:
    				v1, _ := strconv.ParseBool(dv)
    				v2, _ := strconv.ParseBool(field.DefaultValue)
    				alterColumn = v1 != v2
    			default:
    				alterColumn = dv != field.DefaultValue
    			}
    		}
    	}
    
    	// check comment
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    type RenameDataHandlerParams struct {
    	DiskID    string        `msg:"id"`
    	SrcVolume string        `msg:"sv"`
    	SrcPath   string        `msg:"sp"`
    	DstVolume string        `msg:"dv"`
    	DstPath   string        `msg:"dp"`
    	FI        FileInfo      `msg:"fi"`
    	Opts      RenameOptions `msg:"ro"`
    }
    
    // RenameDataInlineHandlerParams are parameters for RenameDataHandler with a buffer for inline data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // there isn't such an edge one is created.
    func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) {
    	if n.Out[to] != to.In[n] {
    		panic(fmt.Errorf("asymmetric edges %v %v", *n, *to))
    	}
    
    	if e := n.Out[to]; e != nil {
    		e.WeightDiv += dv
    		e.Weight += v
    		if residual {
    			e.Residual = true
    		}
    		if !inline {
    			e.Inline = false
    		}
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000140  ee 47 bc 19 72 d3 cc d0  5b fc 6b 25 2f 64 2a 0c  |.G..r...[.k%/d*.|
    00000150  7d e9 8a 1f f8 48 d1 74  d5 70 97 e7 b4 e2 c8 ce  |}....H.t.p......|
    00000160  dc 74 27 e9 af b1 64 56  19 28 8a 34 93 4e 1c 03  |.t'...dV.(.4.N..|
    00000170  67 ae 41 fb 5f d1 e3 20  45 6b bd 49 25 d8 b4 8b  |g.A._.. Ek.I%...|
    00000180  d4 96 d6 96 b2 72 72 f0  d0 68 f1 f7 f3 17 76 85  |.....rr..h....v.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768.go

    	// they can't be changed blindly.
    	k  = 3
    	η  = 2
    	du = 10
    	dv = 4
    
    	// encodingSizeX is the byte size of a ringElement or nttElement encoded
    	// by ByteEncode_X (FIPS 203 (DRAFT), Algorithm 4).
    	encodingSize12 = n * log2q / 8
    	encodingSize10 = n * du / 8
    	encodingSize4  = n * dv / 8
    	encodingSize1  = n * 1 / 8
    
    	messageSize       = encodingSize1
    	decryptionKeySize = k * encodingSize12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top