Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for lM (5.69 sec)

  1. cmd/data-scanner-metric.go

    		m.LastMinute.ILM = make(map[string]madmin.TimedAction, len(m.LifeTimeILM))
    		for i := lifecycle.NoneAction + 1; i < lifecycle.ActionCount; i++ {
    			lm := p.lastMinuteActions(i)
    			if lm.N > 0 {
    				m.LastMinute.ILM[i.String()] = madmin.TimedAction{Count: uint64(lm.N), AccTime: uint64(lm.Total)}
    			}
    		}
    		if len(m.LastMinute.ILM) == 0 {
    			m.LastMinute.ILM = nil
    		}
    	}
    	return m
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K 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/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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/text/cases/info.go

    //    Rule: Never break between consecutive runes of this category.
    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --python_path="/usr/local/bin/python3"
    
    # Build TensorFlow v2
    build --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1
    
    # Use lld as the linker
    build --linkopt="-fuse-ld=lld"
    build --linkopt="-lm"
    build --linkopt="-Wl,--undefined-version"
    
    # Prevent double-compilation of some TF code, ref. b/183279666 (internal)
    # > TF's gen_api_init_files has a genrule to run the core TensorFlow code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. cmd/object-api-datatypes.go

    	UserDefined map[string]string
    
    	// ChecksumAlgorithm if set
    	ChecksumAlgorithm string
    }
    
    // Lookup - returns if uploadID is valid
    func (lm ListMultipartsInfo) Lookup(uploadID string) bool {
    	for _, upload := range lm.Uploads {
    		if upload.UploadID == uploadID {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top