Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 320 for 99$ (0.05 sec)

  1. hack/testdata/multi-resource-json-modify.json

       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
           "app":"mock",
           "status":"replaced"
         }
       },
       "spec":{
         "ports": [{
           "protocol": "TCP",
           "port": 99,
           "targetPort": 9949
         }],
         "selector":{
           "app":"mock"
         }
       }
    }
    {
       "kind":"ReplicationController",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 935 bytes
    - Viewed (0)
  2. src/cmd/covdata/testdata/prog1.go

    //go:noinline
    func second() {
    	println("oy")
    }
    
    //go:noinline
    func third(x int) int {
    	if x != 0 {
    		return 42
    	}
    	println("blarg")
    	return 0
    }
    
    //go:noinline
    func fourth() int {
    	return 99
    }
    
    func main() {
    	println(dep.Dep1())
    	dep.PDep(2)
    	if len(os.Args) > 1 {
    		second()
    		third(1)
    	} else if len(os.Args) > 2 {
    		fourth()
    	} else {
    		first()
    		third(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 616 bytes
    - Viewed (0)
  3. doc/README.md

    API, and should be named after the issue number of the API proposal.
    For example, if the directory `6-stdlib/99-minor` is present,
    then an `api/next` file with the line
    
        pkg net/http, function F #12345
    
    should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
    At a minimum, that file should contain either a full sentence or a TODO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/testdata/testsuid/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"log"
    	"os"
    )
    
    func main() {
    	if os.Geteuid() == os.Getuid() {
    		os.Exit(99)
    	}
    
    	fmt.Fprintf(os.Stdout, "GOTRACEBACK=%s\n", os.Getenv("GOTRACEBACK"))
    	f, err := os.OpenFile(os.Getenv("TEST_OUTPUT"), os.O_CREATE|os.O_RDWR, 0600)
    	if err != nil {
    		log.Fatalf("os.Open failed: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 534 bytes
    - Viewed (0)
  5. test/fixedbugs/issue55122b.go

    package main
    
    func main() {
    	for i := 0; i < 10000; i++ {
    		h(i)
    		sink = make([]byte, 1024) // generate some garbage
    	}
    }
    
    func h(iter int) {
    	var x [32]byte
    	for i := 0; i < 32; i++ {
    		x[i] = 99
    	}
    	g(&x)
    	if x == ([32]byte{}) {
    		return
    	}
    	for i := 0; i < 32; i++ {
    		println(x[i])
    	}
    	panic(iter)
    }
    
    //go:noinline
    func g(x interface{}) {
    	switch e := x.(type) {
    	case *[32]byte:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 18:21:06 UTC 2022
    - 644 bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv13-CHACHA20-SHA256

    00000140  5e dd 95 5a ba e4 5a 68  64 a6 44 f5 a2 3a d6 30  |^..Z..Zhd.D..:.0|
    00000150  7e b1 27 b1 79 44 ef 79  95 51 75 02 24 2c ea ab  |~.'.yD.y.Qu.$,..|
    00000160  d5 e1 fd aa 81 55 89 cf  bc 9c 11 2b 0b 4a 99 9f  |.....U.....+.J..|
    00000170  50 93 68 a1 c8 79 3d d8  aa d8 54 e3 d5 1a 97 90  |P.h..y=...T.....|
    00000180  33 87 a9 70 1d 9d ba 78  d0 87 8a 98 6f 1b 1e b0  |3..p...x....o...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/net/http/cookie_test.go

    		Header{"Set-Cookie": {"Cookie-1=v$1"}},
    		[]*Cookie{{Name: "Cookie-1", Value: "v$1", Raw: "Cookie-1=v$1"}},
    	},
    	{
    		Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.google.ch; HttpOnly"}},
    		[]*Cookie{{
    			Name:       "NID",
    			Value:      "99=YsDT5i3E-CXax-",
    			Path:       "/",
    			Domain:     ".google.ch",
    			HttpOnly:   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue55122.go

    package main
    
    func main() {
    	for i := 0; i < 10000; i++ {
    		h(i)
    		sink = make([]byte, 1024) // generate some garbage
    	}
    }
    
    func h(iter int) {
    	var x [32]byte
    	for i := 0; i < 32; i++ {
    		x[i] = 99
    	}
    	g(&x)
    	if x == ([32]byte{}) {
    		return
    	}
    	for i := 0; i < 32; i++ {
    		println(x[i])
    	}
    	panic(iter)
    }
    
    //go:noinline
    func g(x interface{}) {
    	switch e := x.(type) {
    	case *[32]byte:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 18:21:06 UTC 2022
    - 627 bytes
    - Viewed (0)
  9. hack/testdata/multi-resource-yaml-modify.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: mock
      labels:
        app: mock
        status: replaced
    spec:
      ports:
      - port: 99
        protocol: TCP
        targetPort: 9949
      selector:
        app: mock
    ---
    apiVersion: v1
    kind: ReplicationController
    metadata:
      name: mock
    spec:
      replicas: 1
      selector:
        app: mock
      template:
        metadata:
          labels:
            app: mock
            status: replaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 557 bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/DoubleArrayAsListTest.java

        }
      }
    
      public static final class DoublesAsListTailSubListGenerator extends TestDoubleListGenerator {
        @Override
        protected List<Double> create(Double[] elements) {
          Double[] prefix = {(double) 86, (double) 99};
          Double[] all = concat(prefix, elements);
          return asList(all).subList(2, elements.length + 2);
        }
      }
    
      public static final class DoublesAsListMiddleSubListGenerator extends TestDoubleListGenerator {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top