Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 395 for resch (0.05 sec)

  1. test/fixedbugs/issue15975.go

    package main
    
    var fail bool
    
    type Closer interface {
    	Close()
    }
    
    func nilInterfaceDeferCall() {
    	var x Closer
    	defer x.Close()
    	// if it panics when evaluating x.Close, it should not reach here
    	fail = true
    }
    
    func shouldPanic(f func()) {
    	defer func() {
    		if recover() == nil {
    			panic("did not panic")
    		}
    	}()
    	f()
    }
    
    func main() {
    	shouldPanic(nilInterfaceDeferCall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 20:35:53 UTC 2016
    - 572 bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 554 bytes
    - Viewed (0)
  3. releasenotes/notes/api-server-cluster-local.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 31340
    releaseNotes:
      - |
        **Fixed** the Kubernetes API server is now considered to be cluster-local by default. This means that any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 10 01:00:41 UTC 2021
    - 310 bytes
    - Viewed (0)
  4. releasenotes/notes/46678.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 46555
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Fixed** attempting to reach multi-network endpoints that are unreachable due to `DestinationRule` TLS mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 24 21:40:59 UTC 2023
    - 407 bytes
    - Viewed (0)
  5. releasenotes/notes/out-of-mesh-server.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 20538
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 15:28:47 UTC 2020
    - 234 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 550 bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 03 11:39:37 UTC 2020
    - 543 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 09:52:35 UTC 2019
    - 563 bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: false
    contact_links:
      - name: Ask for help
        url: http://help.gradle.org/
        about: If you need help with Gradle or have a usage question, please reach our community instead of creating an issue.
      - name: Create an issue without template
        url: https://github.com/gradle/gradle/issues/new
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 387 bytes
    - Viewed (0)
  10. test/fixedbugs/issue18725.go

    import "os"
    
    func panicWhenNot(cond bool) {
    	if cond {
    		os.Exit(0)
    	} else {
    		panic("nilcheck elim failed")
    	}
    }
    
    func main() {
    	e := (*string)(nil)
    	panicWhenNot(e == e)
    	// Should never reach this line.
    	panicWhenNot(*e == *e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 20:21:55 UTC 2017
    - 415 bytes
    - Viewed (0)
Back to top