Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for mL (0.02 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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

            }
        },
    
        // Host: x86
        // Target: x64
        LEGACY_X86_ON_AMD64("x86", "bin/amd64_x86", "lib", "ml.exe") {
            @Override
            File getCrossCompilePath(File basePath) {
                return LEGACY_AMD64_ON_AMD64.getBinPath(basePath);
            }
        },
        X86_ON_AMD64("x86", "bin/HostX64/x86", "lib/x86", "ml.exe") {
            @Override
            File getCrossCompilePath(File basePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/networking/core/gateway.go

    	for _, ml := range mutableopts {
    		ml.mutable.Listener = buildGatewayListener(*ml.opts, ml.transport)
    		log.Debugf("buildGatewayListeners: marshaling listener %q with %d filter chains",
    			ml.mutable.Listener.GetName(), len(ml.mutable.Listener.GetFilterChains()))
    
    		// Filters are serialized one time into an opaque struct once we have the complete list.
    		if err := ml.mutable.build(builder, *ml.opts); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/cc/saved_model/image_format/BUILD

            "//tensorflow/cc/experimental/tfa:__subpackages__",
            "//tensorflow/cc/saved_model:__subpackages__",
            "//tensorflow/tools/tfg_graph_transforms:__subpackages__",
            "//waymo/onboard/ml/chauffeur_net/utils:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "internal_api",
        srcs = ["internal_api.cc"],
        hdrs = ["internal_api.h"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 03:07:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. README.md

    [libraries](https://www.tensorflow.org/resources/libraries-extensions), and
    [community](https://www.tensorflow.org/community) resources that lets
    researchers push the state-of-the-art in ML and developers easily build and
    deploy ML-powered applications.
    
    TensorFlow was originally developed by researchers and engineers working within
    the Machine Intelligence team at Google Brain to conduct research in machine
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. 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)
Back to top