Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,523 for late (0.18 sec)

  1. pkg/istio-agent/xds_proxy_delta.go

    		Canary:       false,
    		TypeUrl:      resp.TypeUrl,
    		Nonce:        resp.Nonce,
    		ControlPlane: resp.ControlPlane,
    	}:
    	default:
    		log.Infof("tap response %q arrived too late; discarding", resp.TypeUrl)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. samples/ambient-argo/README.md

    the channel model, these versions would be updated in-place as new patch releases are produced for various bugs or security concerns.  Then, when Istio 1.20.0 ships (ETA late November 2023), the rapid channel will be moved to point to version 1.20.0, while the stable version will be moved to point to 1.19.x (where x is the lates patch result at that time).  Because Istio releases are supported until two subsequent minor versions are shipiped (ie 1.18 will be supported until several weeks after 1.20...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    				socketName      = newEndpoint()
    			)
    
    			testCompletedWG.Add(1)
    			defer testCompletedWG.Done()
    
    			ctx := testContext(t)
    
    			kubeAPIServerWG.Add(1)
    			go func() {
    				// Simulating late start of kube-apiserver - plugin is up before kube-apiserver, if requested by the testcase.
    				time.Sleep(tt.kubeAPIServerDelay)
    
    				service, err = NewGRPCService(ctx, socketName.endpoint, tt.callTimeout)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    	}
    	c := atomic.LoadUint64(&counter)
    	if c != 2 {
    		t.Errorf("healthcheck() called etcd %d times, expected only two calls", c)
    	}
    
    	// cached request should be success and not be overridden by the late error
    	<-signal
    	err = healthcheck()
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	c = atomic.LoadUint64(&counter)
    	if c != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                }
                targetNodes.clear();
            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
         * end fail resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/nilcheck.go

    		i := firstToRemove
    		for j := i; j < len(b.Values); j++ {
    			v := b.Values[j]
    			if v.Op != OpUnknown {
    				if !notStmtBoundary(v.Op) && pendingLines.contains(v.Pos) { // Late in compilation, so any remaining NotStmt values are probably okay now.
    					v.Pos = v.Pos.WithIsStmt()
    					pendingLines.remove(v.Pos)
    				}
    				b.Values[i] = v
    				i++
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadcode.go

    	pendingLines.clear()
    
    	// Unlink values and conserve statement boundaries
    	for i, b := range f.Blocks {
    		if !reachable[b.ID] {
    			// TODO what if control is statement boundary? Too late here.
    			b.ResetControls()
    		}
    		for _, v := range b.Values {
    			if !live[v.ID] {
    				v.resetArgs()
    				if v.Pos.IsStmt() == src.PosIsStmt && reachable[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

                        doLast {
                            def files = configurations.compile.files
                            assert files*.name.sort() == ["api.jar"] // Late dependency is not honoured
                            assert files*.exists() == [ true ]
                        }
                    }
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. test/recover.go

    	}()
    	panic(1)
    }
    
    func test2() {
    	// Recover only sees the panic argument
    	// if it is called from a deferred call.
    	// It does not see the panic when called from a call within a deferred call (too late)
    	// nor does it see the panic when it *is* the deferred call (too early).
    	defer mustRecover(2)
    	defer recover() // should be no-op
    	panic(2)
    }
    
    func test3() {
    	defer mustNotRecover()
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/utils.go

    	// the problem and restarts the controller, then all the hourly
    	// jobs, more than 80 of them for one hourly cronJob, should
    	// all start running with no further intervention (if the cronJob
    	// allows concurrency and late starts).
    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    	// then there could be so many missed start times (it could be off
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top