Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 276 for badger (0.16 sec)

  1. src/cmd/dist/main.go

    package main
    
    import (
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    )
    
    func usage() {
    	xprintf(`usage: go tool dist [command]
    Commands are:
    
    banner                  print installation banner
    bootstrap               rebuild everything
    clean                   deletes all built files
    env [-p]                print environment (-p: include $PATH)
    install [dir]           install individual directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. src/log/slog/record.go

    func countAttrs(args []any) int {
    	n := 0
    	for i := 0; i < len(args); i++ {
    		n++
    		if _, ok := args[i].(string); ok {
    			i++
    		}
    	}
    	return n
    }
    
    const badKey = "!BADKEY"
    
    // argsToAttr turns a prefix of the nonempty args slice into an Attr
    // and returns the unconsumed portion of the slice.
    // If args[0] is an Attr, it returns it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. README.md

    [![Build Status](https://github.com/google/guava/workflows/CI/badge.svg?branch=master)](https://github.com/google/guava/actions)
    [![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7197/badge)](https://bestpractices.coreinfrastructure.org/projects/7197)
    
    
    
    Guava is a set of core Java libraries from Google that includes new collection
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. internal/s3select/json/testdata/4.json

    {
    	"id": "0001",
    	"type": "donut",
    	"name": "Cake",
    	"ppu": 0.55,
    	"batters":
    		{
    			"batter":
    				[
    					{ "id": "1001", "type": "Regular" },
    					{ "id": "1002", "type": "Chocolate" },
    					{ "id": "1003", "type": "Blueberry" },
    					{ "id": "1004", "type": "Devil's Food" }
    				]
    		},
    	"topping":
    		[
    			{ "id": "5001", "type": "None" },
    			{ "id": "5002", "type": "Glazed" },
    			{ "id": "5005", "type": "Sugar" },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 607 bytes
    - Viewed (0)
  5. README.md

    # Istio
    
    [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1395/badge)](https://bestpractices.coreinfrastructure.org/projects/1395)
    [![Go Report Card](https://goreportcard.com/badge/github.com/istio/istio)](https://goreportcard.com/report/github.com/istio/istio)
    [![GoDoc](https://godoc.org/istio.io/istio?status.svg)](https://godoc.org/istio.io/istio)
    
    <a href="https://istio.io/">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/testcerts/testcerts.go

    5550arfEYdTzYFMxY60HJT/LvbGrjxY0PQUWWDbPiRfsdRjOFduAbM0/EVRda/Oo
    Fg72WnHeojDUhqEz4UyFZbnRJ4x6leQhnrIcVjWX4FFFktiO9rqqfw==
    -----END CERTIFICATE-----`)
    
    // BadCert is a abd x509 cert. Copied from crypto/x509/x509_test.go:1628
    var BadCert = []byte(`
    -----BEGIN CERTIFICATE-----
    MIIC1jCCAb6gAwIBAgICEjQwDQYJKoZIhvcNAQELBQAwKDEmMCQGA1UEAxMdRW1w
    dHkgbmFtZSBjb25zdHJhaW50cyBpc3N1ZXIwHhcNMTMwMjAxMDAwMDAwWhcNMjAw
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:03 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/sync/atomic/value_test.go

    	const badErr = "sync/atomic: store of inconsistently typed value into Value"
    	var v Value
    	func() {
    		defer func() {
    			err := recover()
    			if err != nilErr {
    				t.Fatalf("inconsistent store panic: got '%v', want '%v'", err, nilErr)
    			}
    		}()
    		v.Store(nil)
    	}()
    	v.Store(42)
    	func() {
    		defer func() {
    			err := recover()
    			if err != badErr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. docs/en/docs/css/custom.css

    .announce-wrapper {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .announce-wrapper div.item {
      display: none;
    }
    
    .announce-wrapper .sponsor-badge {
      display: block;
      position: absolute;
      top: -10px;
      right: 0;
      font-size: 0.5rem;
      color: #999;
      background-color: #666;
      border-radius: 10px;
      padding: 0 10px;
      z-index: 10;
    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/race.bash

      "FreeBSD amd64") ;;
      "NetBSD amd64")  ;;
      "OpenBSD amd64") ;;
      *) usage         ;;
    esac
    
    if [ ! -f make.bash ]; then
    	echo 'race.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash --no-banner
    go install -race std
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
  10. src/race.bat

    set...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 16:59:17 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top