Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 405 for 99$ (0.67 sec)

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

    {
       "kind":"Service",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
           "app":"mock"
         }
       },
       "spec":{
         "ports": [{
           "protocol": "TCP",
           "port": 99,
           "targetPort": 9949
         }],
         "selector":{
           "app":"mock"
         }
       }
    }
    {
       "kind":"ReplicationController",
       "apiVersion":"v1",
       "metadata":{
         "name":"mock",
         "labels":{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 879 bytes
    - Viewed (0)
  2. hack/testdata/multi-resource-list-modify.json

              "labels":{
                "app":"mock",
                "status":"replaced"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
              }
            }
          },
          {
             "kind":"ReplicationController",
             "apiVersion":"v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue32922.dir/b.go

    // Copyright 2019 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 b
    
    import "./a"
    
    func B() int {
    	return 99 + a.A()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 08 13:20:23 UTC 2019
    - 221 bytes
    - Viewed (0)
  4. src/cmd/fix/buildtag_test.go

    }
    
    var buildtagTests = []testCase{
    	{
    		Name:    "buildtag.oldGo",
    		Version: "go1.10",
    		In: `//go:build yes
    // +build yes
    
    package main
    `,
    	},
    	{
    		Name:    "buildtag.new",
    		Version: "go1.99",
    		In: `//go:build yes
    // +build yes
    
    package main
    `,
    		Out: `//go:build yes
    
    package main
    `,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 522 bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ExportKeyingMaterial

    000000a0  2f 17 03 03 02 6d e9 b0  9a 48 a0 96 b9 52 a1 88  |/....m...H...R..|
    000000b0  e4 03 62 85 7d 6b 08 37  dc 50 13 7d aa 99 ba 73  |..b.}k.7.P.}...s|
    000000c0  38 08 e8 64 cd 37 a4 44  9d 86 e3 5e 24 df d9 da  |8..d.7.D...^$...|
    000000d0  0a 3b 97 9c 30 37 d9 99  0f a6 17 ef 5a e7 1b e9  |.;..07......Z...|
    000000e0  f6 5e c3 2b fc cc 8c 98  b9 7e 5f de bb 3c 19 9a  |.^.+.....~_..<..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Translations by Google Translate.
    
    package sampler
    
    var hello = newText(`
    
    English: en: 99 bottles of beer on the wall, 99 bottles of beer, ...
    
    `)
    -- hello_test.go --
    // Copyright 2018 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  9. test/method5.go

    func CheckI(name string, i Tinter, inc int) {
    	b, x := i.M(1000, 99)
    	if b != 99 || x != 1000+inc {
    		failed = true
    		print(name, ".M(1000, 99) = ", b, ", ", x, " want 99, ", 1000+inc, "\n")
    	}
    	
    	CheckF("(i="+name+")", i.M, inc)
    }
    
    func CheckF(name string, f func(int, byte) (byte, int), inc int) {
    	b, x := f(1000, 99)
    	if b != 99 || x != 1000+inc {
    		failed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  10. 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)
Back to top