Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for 24305 (0.23 sec)

  1. test/escape5.go

    func f11(**int) {
    }
    func f12(_ **int) {
    }
    func f13() {
    	var x *int
    	f11(&x)
    	f12(&x)
    	runtime.KeepAlive(&x)
    }
    
    // Test for issue 24305 (passing to unnamed receivers does not escape).
    type U int
    
    func (*U) M()   {}
    func (_ *U) N() {}
    
    func fbad24305a() {
    	var u U
    	u.M()
    	u.N()
    }
    
    func fbad24305b() {
    	var u U
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. releasenotes/notes/24905.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 24905
    
    releaseNotes:
    - |
      **Added** `istioctl experimental version` and `proxy-status` now use token security.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 31 17:27:25 UTC 2020
    - 257 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    	} else if hours < 24*365*2 {
    		return fmt.Sprintf("%dd", hours/24)
    	} else if hours < 24*365*8 {
    		dy := int(hours/24) % 365
    		if dy == 0 {
    			return fmt.Sprintf("%dy", hours/24/365)
    		}
    		return fmt.Sprintf("%dy%dd", hours/24/365, dy)
    	}
    	return fmt.Sprintf("%dy", int(hours/24/365))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue22305.go

    // compile
    
    // Copyright 2017 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.
    
    // Issue 22305: gccgo failed to compile this file.
    
    package main
    
    var F func() [0]func()
    var i = 2
    var B = F()[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 03:37:20 UTC 2018
    - 302 bytes
    - Viewed (0)
  5. requirements-docs.txt

    # For image processing by Material for MkDocs
    pillow==10.3.0
    # For image processing by Material for MkDocs
    cairosvg==2.7.0
    mkdocstrings[python]==0.24.3
    griffe-typingdoc==0.2.2
    # For griffe, it formats with black
    black==24.3.0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 28 00:27:34 UTC 2024
    - 465 bytes
    - Viewed (0)
  6. src/syscall/zsysnum_linux_mips.go

    	SYS_FACCESSAT              = 4300
    	SYS_PSELECT6               = 4301
    	SYS_PPOLL                  = 4302
    	SYS_UNSHARE                = 4303
    	SYS_SPLICE                 = 4304
    	SYS_SYNC_FILE_RANGE        = 4305
    	SYS_TEE                    = 4306
    	SYS_VMSPLICE               = 4307
    	SYS_MOVE_PAGES             = 4308
    	SYS_SET_ROBUST_LIST        = 4309
    	SYS_GET_ROBUST_LIST        = 4310
    	SYS_KEXEC_LOAD             = 4311
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_linux_mipsle.go

    	SYS_FACCESSAT              = 4300
    	SYS_PSELECT6               = 4301
    	SYS_PPOLL                  = 4302
    	SYS_UNSHARE                = 4303
    	SYS_SPLICE                 = 4304
    	SYS_SYNC_FILE_RANGE        = 4305
    	SYS_TEE                    = 4306
    	SYS_VMSPLICE               = 4307
    	SYS_MOVE_PAGES             = 4308
    	SYS_SET_ROBUST_LIST        = 4309
    	SYS_GET_ROBUST_LIST        = 4310
    	SYS_KEXEC_LOAD             = 4311
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

    * e2e: adapt kubelet_perf.go to use the new summary metrics API ([#24003](https://github.com/kubernetes/kubernetes/pull/24003), [@yujuhong](https://github.com/yujuhong))
    * e2e: fix error checking in kubelet stats ([#24205](https://github.com/kubernetes/kubernetes/pull/24205), [@yujuhong](https://github.com/yujuhong))
    * Trusty: Avoid unnecessary in-memory temp files ([#24144](https://github.com/kubernetes/kubernetes/pull/24144), [@andyzheng0831](https://github.com/andyzheng0831))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    				CurrentTime: time.Now().Add(time.Duration(-100 * time.Hour * 24 * 365)),
    				Roots:       getRootCertPool(t),
    			},
    			Certs: getCerts(t, clientCNCert),
    			User:  CommonNameUserConversion,
    
    			ExpectOK:  false,
    			ExpectErr: true,
    		},
    		"expired cert": {
    			Opts: x509.VerifyOptions{
    				CurrentTime: time.Now().Add(time.Duration(100 * time.Hour * 24 * 365)),
    				Roots:       getRootCertPool(t),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_PSELECT6                     = 4301
    	SYS_PPOLL                        = 4302
    	SYS_UNSHARE                      = 4303
    	SYS_SPLICE                       = 4304
    	SYS_SYNC_FILE_RANGE              = 4305
    	SYS_TEE                          = 4306
    	SYS_VMSPLICE                     = 4307
    	SYS_MOVE_PAGES                   = 4308
    	SYS_SET_ROBUST_LIST              = 4309
    	SYS_GET_ROBUST_LIST              = 4310
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top