Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for lM (3.45 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

                return null;
            }
    
            ASN1ObjectIdentifier[] lm = this.mechs;
            byte[] ml = encodeMechs(lm);
            byte[] mechanismListMIC = this.mechContext.calculateMIC(ml);
            if ( log.isDebugEnabled() ) {
                log.debug("Out Mech list " + Arrays.toString(lm));
                log.debug("Out Mech list encoded " + Hexdump.toHexString(ml));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue8756/issue8756.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue8756
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    
    func Pow() {
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 269 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue8756.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue8756"
    )
    
    func test8756(t *testing.T) {
    	issue8756.Pow()
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 359 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		sparse: map[uint64]*Location{},
    	}
    }
    
    func (lm locationIDMap) get(id uint64) *Location {
    	if id < uint64(len(lm.dense)) {
    		return lm.dense[int(id)]
    	}
    	return lm.sparse[id]
    }
    
    func (lm locationIDMap) set(id uint64, loc *Location) {
    	if id < uint64(len(lm.dense)) {
    		lm.dense[id] = loc
    		return
    	}
    	lm.sparse[id] = loc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. cmd/os-instrumented.go

    		m.LifeTimeOps = nil
    	}
    
    	m.LastMinute.Operations = make(map[string]madmin.TimedAction, osMetricLast)
    	for i := osMetric(0); i < osMetricLast; i++ {
    		lm := o.latency[i].total()
    		if lm.N > 0 {
    			m.LastMinute.Operations[i.String()] = lm.asTimedAction()
    		}
    	}
    	if len(m.LastMinute.Operations) == 0 {
    		m.LastMinute.Operations = nil
    	}
    
    	return m
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 15 01:09:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/unicode/script_test.go

    	. "unicode"
    )
    
    type T struct {
    	rune   rune
    	script string
    }
    
    var inCategoryTest = []T{
    	{0x0081, "Cc"},
    	{0x200B, "Cf"},
    	{0xf0000, "Co"},
    	{0xdb80, "Cs"},
    	{0x0236, "Ll"},
    	{0x1d9d, "Lm"},
    	{0x07cf, "Lo"},
    	{0x1f8a, "Lt"},
    	{0x03ff, "Lu"},
    	{0x0bc1, "Mc"},
    	{0x20df, "Me"},
    	{0x07f0, "Mn"},
    	{0x1bb2, "Nd"},
    	{0x10147, "Nl"},
    	{0x2478, "No"},
    	{0xfe33, "Pc"},
    	{0x2011, "Pd"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  7. operator/pkg/tpath/tree.go

    			// non-leaf list, expect to match item by key:value.
    			if lm, ok := le.(map[any]any); ok {
    				k, v, err := util.PathKV(pe)
    				if err != nil {
    					return nil, false, fmt.Errorf("path %s: %s", fullPath, err)
    				}
    				if stringsEqual(lm[k], v) {
    					scope.Debugf("found matching kv %v:%v", k, v)
    					nn := &PathContext{
    						Parent: nc,
    						Node:   lm,
    					}
    					nc.KeyToChild = idx
    					nn.KeyToChild = k
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    	for i, lm := range language.AliasMap {
    		// If deprecated codes match and there is no fiddling with the script
    		// or region, we consider it an exact match.
    		conf := Exact
    		if language.AliasTypes[i] != language.Macro {
    			if !isExactEquivalent(language.Language(lm.From)) {
    				conf = High
    			}
    			update(lm.To, lm.From, conf)
    		}
    		update(lm.From, lm.To, conf)
    	}
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		mappings := []*Mapping{p.Mapping[0]}
    		for _, m := range p.Mapping[1:] {
    			lm := mappings[len(mappings)-1]
    			if adjacent(lm, m) {
    				lm.Limit = m.Limit
    				if m.File != "" {
    					lm.File = m.File
    				}
    				if m.BuildID != "" {
    					lm.BuildID = m.BuildID
    				}
    				p.updateLocationMapping(m, lm)
    				continue
    			}
    			mappings = append(mappings, m)
    		}
    		p.Mapping = mappings
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

            kernel_deps: op kernel dependencies
        """
    
        # Create tool to generate .cc fuzzer files.
        tf_cc_binary(
            name = "op_fuzz_gen_tool",
            copts = tf_copts(),
            linkopts = if_not_windows(["-lm", "-Wl,-ldl"]) + lrt_if_needed(),
            linkstatic = 1,  # Faster to link this one-time-use binary dynamically
            deps = [
                "//tensorflow/cc/framework/fuzzing:cc_op_fuzz_gen_main",
                op_def_src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top