Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for mL (0.14 sec)

  1. src/cmd/link/internal/ld/macho.go

    			ml.data[7] = 0                    // lazy bind size
    			ml.data[8] = 0                    // export
    			ml.data[9] = 0                    // export size
    		}
    
    		ml := newMachoLoad(ctxt.Arch, LC_SYMTAB, 4)
    		ml.data[0] = uint32(linkoff + s1 + s2)                /* symoff */
    		ml.data[1] = uint32(nsortsym)                         /* nsyms */
    		ml.data[2] = uint32(linkoff + s1 + s2 + s3 + s4 + s5) /* stroff */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    // directory, returning an error if something went wrong.
    func emitMetaDataToDirectory(outdir string, ml []rtcov.CovMetaBlob) error {
    	ml, err := prepareForMetaEmit()
    	if err != nil {
    		return err
    	}
    	if len(ml) == 0 {
    		return nil
    	}
    
    	metaDataEmitAttempted = true
    
    	s := &emitState{
    		metalist: ml,
    		debug:    os.Getenv("GOCOVERDEBUG") != "",
    		outdir:   outdir,
    	}
    
    	// Open output files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    					})
    				}
    			}
    			ml = append(ml, MetricV2{
    				Description: getClusterReplProxiedGetOperationsMD(clusterMetricNamespace),
    				Value:       float64(m.Proxied.GetTotal),
    			})
    			ml = append(ml, MetricV2{
    				Description: getClusterReplProxiedHeadOperationsMD(clusterMetricNamespace),
    				Value:       float64(m.Proxied.HeadTotal),
    			})
    			ml = append(ml, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. operator/pkg/util/progress/progress.go

    		p.bar.Write()
    	}
    }
    
    func (p *Log) NewComponent(component string) *ManifestLog {
    	ml := &ManifestLog{
    		report: p.reportProgress(component),
    	}
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	p.components[component] = ml
    	return ml
    }
    
    func (p *Log) SetMessage(status string, finish bool) {
    	// if we are not a terminal and there is no change, do not write
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/apis.go

    	if w == nil {
    		return fmt.Errorf("error: nil writer in WriteMeta")
    	}
    	if !finalHashComputed {
    		return fmt.Errorf("error: no meta-data available (binary not built with -cover?)")
    	}
    	ml := rtcov.Meta.List
    	return writeMetaData(w, ml, cmode, cgran, finalHash)
    }
    
    // WriteCountersDir implements [runtime/coverage.WriteCountersDir].
    func WriteCountersDir(dir string) error {
    	if cmode != coverage.CtrModeAtomic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/crypto/internal/mlkem768/mlkem768.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package mlkem768 implements the quantum-resistant key encapsulation method
    // ML-KEM (formerly known as Kyber).
    //
    // Only the recommended ML-KEM-768 parameter set is provided.
    //
    // The version currently implemented is the one specified by [NIST FIPS 203 ipd],
    // with the unintentional transposition of the matrix A reverted to match the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/testsupport.go

    	}
    
    	// Emit meta-data and counter data.
    	ml := rtcov.Meta.List
    	if len(ml) == 0 {
    		// This corresponds to the case where we have a package that
    		// contains test code but no functions (which is fine). In this
    		// case there is no need to emit anything.
    	} else {
    		if err := emitMetaDataToDirectory(dir, ml); err != nil {
    			return err
    		}
    		if err := emitCounterDataToDirectory(dir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    you-should-try-7c0ac7eebb3e title: 5 Advanced Features of FastAPI You Should Try - author: Kaustubh Gupta author_link: https://medium.com/@kaustubhgupta1828/ link: https://www.analyticsvidhya.com/blog/2021/06/deploying-ml-models-as-api-using-fastapi-and-heroku/ title: Deploying ML Models as API Using FastAPI and Heroku - link: https://jarmos.netlify.app/posts/using-github-actions-to-deploy-a-fastapi-project-to-heroku/ title: Using GitHub Actions to Deploy a FastAPI Project to Heroku author_link:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/crypto/tls/key_schedule.go

    	}
    	return c, kyberSharedSecret(ss, c), nil
    }
    
    func kyberSharedSecret(K, c []byte) []byte {
    	// Package mlkem768 implements ML-KEM, which compared to Kyber removed a
    	// final hashing step. Compute SHAKE-256(K || SHA3-256(c), 32) to match Kyber.
    	// See https://words.filippo.io/mlkem768/#bonus-track-using-a-ml-kem-implementation-as-kyber-v3.
    	h := sha3.NewShake256()
    	h.Write(K)
    	ch := sha3.Sum256(c)
    	h.Write(ch[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe.go

    	// so we can skip the carry propagation.
    	return v
    }
    
    // mul51 returns lo + hi * 2⁵¹ = a * b.
    func mul51(a uint64, b uint32) (lo uint64, hi uint64) {
    	mh, ml := bits.Mul64(a, uint64(b))
    	lo = ml & maskLow51Bits
    	hi = (mh << 13) | (ml >> 51)
    	return
    }
    
    // Pow22523 set v = x^((p-5)/8), and returns v. (p-5)/8 is 2^252-3.
    func (v *Element) Pow22523(x *Element) *Element {
    	var t0, t1, t2 Element
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top