Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for generations (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if updatedPod2.Generation != 3 {
    		t.Errorf("unexpected pod generation: %q", updatedPod2.Generation)
    	}
    
    	// Third, update using a current version as the suggestion.
    	// Return an error and make sure that SimpleUpdate is NOT called a second time,
    	// since the live lookup shows the suggestion was already up to date.
    	attempts := 0
    	updatedPod3 := &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    		}
    		endpointSlice.Generation = 1
    		esIndexer.Add(endpointSlice)
    
    		return false, endpointSlice, nil
    	}))
    	client.PrependReactor("update", "endpointslices", k8stesting.ReactionFunc(func(action k8stesting.Action) (bool, runtime.Object, error) {
    		endpointSlice := action.(k8stesting.CreateAction).GetObject().(*discovery.EndpointSlice)
    		endpointSlice.Generation++
    		esIndexer.Update(endpointSlice)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	// run through location list generation.
    	state.convergeCount = loggingLevel / 1000
    	state.f = f
    	state.registers = f.Config.registers
    	state.stackOffset = stackOffset
    	state.ctxt = ctxt
    
    	if buildcfg.Experiment.RegabiArgs {
    		PopulateABIInRegArgOps(f)
    	}
    
    	if state.loggingLevel > 0 {
    		state.logf("Generating location lists for function %q\n", f.Name)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    	func() {
    		c.Lock()
    		defer c.Unlock()
    
    		if generation, ok := c.ready.checkAndReadGeneration(); generation != readyGeneration || !ok {
    			// We went unready or are already on a different generation.
    			// Avoid registering and starting the watch as it will have to be
    			// terminated immediately anyway.
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	oldJob := old.(*batch.Job)
    	curJob := cur.(*batch.Job)
    
    	// never return error
    	key, err := controller.KeyFunc(curJob)
    	if err != nil {
    		return
    	}
    
    	if curJob.Generation == oldJob.Generation {
    		// Delay the Job sync when no generation change to batch Job status updates,
    		// typically triggered by pod events.
    		jm.enqueueSyncJobBatched(logger, curJob)
    	} else {
    		// Trigger immediate sync when spec is changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. .bazelrc

    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    # Test-related settings below this point
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	}
    }
    
    // arm64Invert evaluates (InvertFlags op), which
    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    // to the flag-generating instruction were reversed, e.g.
    // (InvertFlags (CMP x y)) -> (CMP y x)
    func arm64Invert(op Op) Op {
    	switch op {
    	case OpARM64LessThan:
    		return OpARM64GreaterThan
    	case OpARM64LessThanU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    // effect on scheduling.
    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (RotateLeft16 <t> x (MOVDconst [c])) => (Or16 (Lsh16x64 <t> x (MOVDconst [c&15])) (Rsh16Ux64 <t> x (MOVDconst [-c&15])))
    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    (ROTL   x (MOVDconst [c])) => (ROTLconst   x [c&63])
    
    // Combine rotate and mask operations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top