Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for taghide (0.28 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	warnNoMatches(tagignore == nil || tim, "TagIgnore", ui)
    
    	tagshow, err := compileRegexOption("tagshow", cfg.TagShow, err)
    	taghide, err := compileRegexOption("taghide", cfg.TagHide, err)
    	tns, tnh := prof.FilterTagsByName(tagshow, taghide)
    	warnNoMatches(tagshow == nil || tns, "TagShow", ui)
    	warnNoMatches(taghide == nil || tnh, "TagHide", ui)
    
    	if prunefrom != nil {
    		prof.PruneFrom(prunefrom)
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	ShowFrom     string  `json:"show_from,omitempty"`
    	TagFocus     string  `json:"tagfocus,omitempty"`
    	TagIgnore    string  `json:"tagignore,omitempty"`
    	TagShow      string  `json:"tagshow,omitempty"`
    	TagHide      string  `json:"taghide,omitempty"`
    	NoInlines    bool    `json:"noinlines,omitempty"`
    	ShowColumns  bool    `json:"showcolumns,omitempty"`
    
    	// Output granularity
    	Granularity string `json:"granularity,omitempty"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	addFilter("show", cfg.Show)
    	addFilter("show_from", cfg.ShowFrom)
    	addFilter("tagfocus", cfg.TagFocus)
    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    		CallTree:     cfg.CallTree,
    		DropNegative: cfg.DropNegative,
    
    		CompactLabels: cfg.CompactLabels,
    		Ratio:         1 / cfg.DivideBy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    	"tagshow": helpText(
    		"Only consider tags matching this regexp",
    		"Discard tags that do not match this regexp"),
    	"taghide": helpText(
    		"Skip tags matching this regexp",
    		"Discard tags that match this regexp"),
    	// Heap profile options
    	"divide_by": helpText(
    		"Ratio to divide all samples before visualization",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/crypto/aes/aes_gcm.go

    	// leaves tagSize uninitialized, for example.
    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_s390x.go

    	// leaves tagSize uninitialized, for example.
    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.go

    		panic("cipher: incorrect nonce length given to GCM")
    	}
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	var counter, tagMask [gcmBlockSize]byte
    	g.deriveCounter(&counter, nonce)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/externalLibraries/tests/buildEnvironment.out

              |    |    |    +--- org.tukaani:xz:1.6
              |    |    |    +--- org.apache.commons:commons-collections4:4.4
              |    |    |    \--- org.ysb33r.gradle:grolifant-rawhide:3.0.0 (*)
              |    |    \--- org.ysb33r.gradle:grolifant-rawhide:3.0.0 (*)
              |    +--- org.ysb33r.gradle:grolifant50:3.0.0
              |    |    +--- org.tukaani:xz:1.6
              |    |    +--- org.ysb33r.gradle:grolifant40:3.0.0 (*)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 07:14:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    // [NewGCM], which is more resistant to misuse.
    func NewGCMWithTagSize(cipher Block, tagSize int) (AEAD, error) {
    	return newGCMWithNonceAndTagSize(cipher, gcmStandardNonceSize, tagSize)
    }
    
    func newGCMWithNonceAndTagSize(cipher Block, nonceSize, tagSize int) (AEAD, error) {
    	if tagSize < gcmMinimumTagSize || tagSize > gcmBlockSize {
    		return nil, errors.New("cipher: incorrect tag size given to GCM")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go

    // However, in this package AES isn't used and the one-time key is specified
    // directly.
    package poly1305
    
    import "crypto/subtle"
    
    // TagSize is the size, in bytes, of a poly1305 authenticator.
    const TagSize = 16
    
    // Sum generates an authenticator for msg using a one-time key and puts the
    // 16-byte result into out. Authenticating two different messages with the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top