Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,248 for causing (0.21 sec)

  1. releasenotes/notes/ssh-iptables.yaml

    area: traffic-management
    issue:
    - 35733
    releaseNotes:
    - |
      **Fixed** an issue causing mTLS errors for traffic on port 22, by including port 22 in iptables by default.
    
    upgradeNotes:
    - title: Port 22 iptables capture changes
      content: |
        In previous versions, port 22 was excluded from iptables capture. This mitigates risk of getting locked out of a VM
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue36085.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 36085: gccgo compiler did not generate type descriptor
    // for pointer to type alias defined in another package, causing
    // linking error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 11 19:48:39 UTC 2019
    - 339 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/setgid2_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Stress test setgid and thread creation. A thread
    // can get a SIGSETXID signal early on at thread
    // initialization, causing crash. See issue 53374.
    
    package cgotest
    
    /*
    #include <sys/types.h>
    #include <unistd.h>
    */
    import "C"
    
    import (
    	"runtime"
    	"testing"
    )
    
    func testSetgidStress(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 681 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_limit_dup_entry.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # FuzzA attempts to cause the mutator to create duplicate inputs that generate
    # new coverage. Previously this would trigger a corner case when the fuzzer
    # had an execution limit, causing it to deadlock and sit in the coordinator
    # loop indefinitely, failing to exit once the limit had been exhausted.
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1
    
    -- go.mod --
    module m
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 725 bytes
    - Viewed (0)
  5. pkg/test/datasets/validation/dataset/networking-v1-ServiceEntry.yaml

      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
      - address: t.istio-system.svc.cluster.local # TODO: this is brittle
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  6. pkg/test/datasets/validation/dataset/networking-v1beta1-ServiceEntry.yaml

      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
      - address: t.istio-system.svc.cluster.local # TODO: this is brittle
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 511 bytes
    - Viewed (0)
  7. test/fixedbugs/bug450.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3899: 8g incorrectly thinks a variable is
    // "set and not used" and elides an assignment, causing
    // variables to end up with wrong data.
    //
    // The reason is a miscalculation of variable width.
    
    package main
    
    func bar(f func()) {
    	f()
    }
    
    func foo() {
    	f := func() {}
    	if f == nil {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 496 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    //
    //	 b) In some cases, a number of origins contribute to causing the user
    //	 agents to issue an HTTP request.  In those cases, the user agent MAY
    //	 list all the origins in the Origin header field. For example, if the
    //	 HTTP request was initially issued by one origin but then later
    //	 redirected by another origin, the user agent MAY inform the server
    //	 that two origins were involved in causing the user agent to issue the
    //	 request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingEnvMapTest.groovy

                return super.getOrDefault(Objects.requireNonNull(key), defaultValue)
            }
    
            @Override
            protected Map<String, String> delegate() {
                // Groovy ends up calling get() to obtain innerMap if there's no explicit qualifier, causing stack overflow.
                return AccessTrackingEnvMapTest.this.innerMap
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/runtime/runtime_unix_test.go

    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"testing"
    )
    
    func TestGoroutineProfile(t *testing.T) {
    	// GoroutineProfile used to use the wrong starting sp for
    	// goroutines coming out of system calls, causing possible
    	// crashes.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(100))
    
    	var stop uint32
    	defer atomic.StoreUint32(&stop, 1) // in case of panic
    
    	var wg sync.WaitGroup
    	for i := 0; i < 4; i++ {
    		wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top