Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for badger (0.11 sec)

  1. docs/en/docs/img/sponsors/doist-banner.svg

    doist-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 01 08:58:40 UTC 2022
    - 52.2K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

        a:active {
            text-decoration: none;
        }
    }
    .badge {
        background-color: var(--black-color);
        height: 24px;
        border-radius: 12px;
        border-color: var(--black-color);
        border-style: solid;
        border-width: 1px;
        padding: 5px;
        a {
            color: var(--gradle-blue);
        }
    }
    .badge-type {
        border-radius: 8px;
        margin-right: 10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			}
    
    			// Create a pod in a different namespace first to ensure
    			// that its corresponding event will not be propagated.
    			badKey := fmt.Sprintf("/pods/%s-bad/foo", tt.namespace)
    			badOut := &example.Pod{}
    			err = store.GuaranteedUpdate(ctx, badKey, badOut, true, nil, storage.SimpleUpdate(
    				func(runtime.Object) (runtime.Object, error) {
    					obj := basePod.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    type Recur struct {
    	i      int
    	failed *bool
    }
    
    func (r *Recur) String() string {
    	if recurCount++; recurCount > 10 {
    		*r.failed = true
    		return "FAIL"
    	}
    	// This will call badVerb. Before the fix, that would cause us to recur into
    	// this routine to print %!p(value). Now we don't call the user's method
    	// during an error.
    	return Sprintf("recur@%p value: %d", r, r.i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    	expectedErr := "tls: server sent certificate containing RSA key larger than 8192 bits"
    	err := c.verifyServerCertificate([][]byte{testCert.Bytes})
    	if err == nil || err.Error() != expectedErr {
    		t.Errorf("Conn.verifyServerCertificate unexpected error: want %q, got %q", expectedErr, err)
    	}
    
    	expectedErr = "tls: client sent certificate containing RSA key larger than 8192 bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top