Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,070 for late (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/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, testProviderName, tt.callTimeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		ctrl.DeleteRegistry("missed", "test")
    		expectRunningOrFail(t, ctrl, true)
    	})
    	t.Run("AddRegistryAndRun after aggregate Run starts registry", func(t *testing.T) {
    		ctrl.AddRegistryAndRun(runnableRegistry("late"), stop)
    		expectRunningOrFail(t, ctrl, true)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

        override fun initializeCacheEntry() {
            cacheAction = determineCacheAction()
            problems.action(cacheAction)
            // TODO:isolated find a way to avoid this late binding
            modelSideEffectExecutor.sideEffectStore = buildTreeModelSideEffects
        }
    
        override fun attachRootBuild(host: Host) {
            this.host = host
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Transport.java

                    if ( run_thread != this.thread ) {
                        /*
                         * Thread no longer the one setup for this transport --
                         * doConnect returned too late, just ignore.
                         */
                        if ( ex0 instanceof SocketTimeoutException ) {
                            log.debug("Timeout connecting", ex0);
                        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Store {t} dst (Int64Make hi lo) mem) && t.Size() == 8 && config.BigEndian =>
    	(Store {lo.Type}
    		(OffPtr <lo.Type.PtrTo()> [4] dst)
    		lo
    		(Store {hi.Type} dst hi mem))
    
    // These are not enabled during decomposeBuiltin if late call expansion, but they are always enabled for softFloat
    (Arg {n} [off]) && is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.Int32> {n} [off+4])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	// NodeName is set by the scheduler after the pod is created
    	// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#late-initialization
    	node := ptr.Flatten(krt.FetchOne(ctx, Nodes, krt.FilterKey(pod.Spec.NodeName)))
    	if node == nil {
    		if pod.Spec.NodeName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. operator/pkg/object/objects.go

    			return 1000
    
    			// Autoscalers typically act on a deployment
    		case gk == "autoscaling/HorizontalPodAutoscaler":
    			return 1001
    
    			// Create services late - after pods have been started
    		case gk == "/Service":
    			return 10000
    
    		default:
    			return 1000
    		}
    	}
    }
    
    func ObjectsNotInLists(objects K8sObjects, lists ...K8sObjects) K8sObjects {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
Back to top