Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,770 for happens (0.2 sec)

  1. releasenotes/notes/29427.yaml

          When upgrading your Istio data plane from 1.7.x (where x < 5) to 1.7.5 or newer, you may 
          observe connectivity issues between your gateway and your sidecars or among your sidecars 
          with 503 errors in the log. This happens when 1.7.5+ proxies send HTTP 1xx or 204 response 
          codes with headers that 1.7.x proxies reject. To fix this, upgrade all your 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 21:29:31 UTC 2020
    - 653 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_rename_v1.9.0-new.txt

    Module example.com/retract/rename is renamed in this version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.9.0-new"}
    -- .mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- go.mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- newname.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 429 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    	// If Add with a positive delta happens after Wait, it will return error,
    	// which prevent unsafe Add.
    	Add(delta int) error
    
    	// Done decrements the WaitGroup counter.
    	Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. futures/README.md

    The modules under this directory will be released exactly once each. Once that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 141 bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

         * {@link org.gradle.api.java.archives.Manifest} or a file path as interpreted by {@link org.gradle.api.Project#file(Object)}.
         *
         * The merge is not happening instantaneously. It happens either before writing or when {@link #getEffectiveManifest()}
         * is called.
         *
         * @return this
         */
        Manifest from(Object... mergePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue9400/asm_riscv64.s

    // license that can be found in the LICENSE file.
    
    //go:build riscv64 && gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024*8), X2
    
    	// Ask signaller to setgid
    	MOV	$1, X5
    	FENCE
    	MOVW	X5, ·Baton(SB)
    	FENCE
    
    	// Wait for setgid completion
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 659 bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/benchshort.json

    {"Action":"start"}
    {"Action":"output","Output":"# This file ends in an early EOF to trigger the Benchmark prefix test,\n"}
    {"Action":"output","Output":"# which only happens when a benchmark prefix is seen ahead of the \\n.\n"}
    {"Action":"output","Output":"# Normally that's due to the benchmark running and the \\n coming later,\n"}
    {"Action":"output","Output":"# but to avoid questions of timing, we just use a file with no \\n at all.\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 537 bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleOutOfBlockModificationListener.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinModuleOutOfBlockModificationListener {
        /**
         * [onModification] is invoked in a write action before or after an out-of-block modification happens in [module]'s source code.
         *
         * See [KotlinModificationTrackerFactory.createProjectWideOutOfBlockModificationTracker] for an explanation of out-of-block
         * modifications.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 987 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    //     json.Unmarshaler.  This itab happens to also live in bucket 0x111.
    //     The lookup code goes into an infinite loop searching for this itab.
    //
    // The code is carefully crafted so that the two itabs are both from the
    // same bucket, and so that the second itab doesn't exist in
    // the itab hashmap yet (so the entire linked list must be searched).
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds.go

    		if !builder.ServiceFound() {
    			removed = append(removed, clusterName)
    			continue
    		}
    
    		// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    		if !features.EnableUnsafeAssertions {
    			cachedEndpoint := eds.Cache.Get(&builder)
    			if cachedEndpoint != nil {
    				resources = append(resources, cachedEndpoint)
    				cached++
    				continue
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top