Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,909 for became (0.3 sec)

  1. pkg/registry/core/service/ipallocator/bitmap_test.go

    		}
    		if err := r.Allocate(netutils.ParseIPSloppy(s)); err != ErrAllocated {
    			t.Fatal(err)
    		}
    	}
    	for i := 0; i < 100; i++ {
    		if _, err := r.AllocateNext(); err != ErrFull {
    			t.Fatalf("suddenly became not-full: %#v", r)
    		}
    	}
    
    	if f := r.Free(); f != 0 {
    		t.Errorf("expected free equal to 0 got: %d", f)
    	}
    
    	if r.max != 2 {
    		t.Fatalf("expected range equal to 2, got: %v", r)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER=${KUBE_ENABLE_METRICS_SERVER:-true}
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    #   none        - No metadata agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			t.Fatal(err)
    		}
    	}
    	if f := r.Free(); f != 0 {
    		t.Errorf("expected free equal to 0 got: %d", f)
    	}
    
    	for i := 0; i < 100; i++ {
    		if ip, err := r.AllocateNext(); err == nil {
    			t.Fatalf("suddenly became not-full: %s", ip.String())
    		}
    	}
    
    }
    
    func TestForEachIPAllocator(t *testing.T) {
    	_, cidr, err := netutils.ParseCIDRSloppy("192.168.1.0/24")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    			}
    		}
    
    		// The last store becomes the WBend marker. This marker is used by the liveness
    		// pass to determine what parts of the code are preemption-unsafe.
    		// All subsequent memory operations use this memory, so we have to sacrifice the
    		// previous last memory op to become this new value.
    		bEnd.Values = append(bEnd.Values, last)
    		last.Block = bEnd
    		last.reset(OpWBend)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. pkg/kubelet/nodestatus/setters.go

    			if newNodeReadyCondition.Status == v1.ConditionTrue {
    				recordEventFunc(v1.EventTypeNormal, events.NodeReady)
    			} else {
    				recordEventFunc(v1.EventTypeNormal, events.NodeNotReady)
    				klog.InfoS("Node became not ready", "node", klog.KObj(node), "condition", newNodeReadyCondition)
    			}
    		}
    		return nil
    	}
    }
    
    // MemoryPressureCondition returns a Setter that updates the v1.NodeMemoryPressure condition on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    // synced from the VolumesInUse list in the Node.Status.
    //
    // The MarkVolumesAsReportedInUse() call cannot be performed in dsw directly
    // because it does not have access to the Node object.
    // This also cannot be populated on node status manager init because the volume
    // may not have been added to dsw at that time.
    //
    // Or, after a successful node status update, call with updatedNode returned from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	// For historical reasons, MemStats includes tiny allocations
    	// in both the total free and total alloc count. This double-counts
    	// memory in some sense because their tiny allocation block is also
    	// counted. Tracking the lifetime of individual tiny allocations is
    	// currently not done because it would be too expensive.
    	nFree += consStats.tinyAllocCount
    	nMalloc += consStats.tinyAllocCount
    
    	// Calculate derived stats.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			klog.Warningf("Ignoring PriorityLevelConfiguration object %s because its spec (%s) is broken: %s", pl.Name, fcfmt.Fmt(pl.Spec), err)
    			continue
    		}
    		meal.newPLStates[pl.Name] = state
    		state.pl = pl
    		state.qsCompleter = qsCompleter
    		if state.quiescing { // it was undesired, but no longer
    			klog.V(3).Infof("Priority level %q was undesired and has become desired again", pl.Name)
    			state.quiescing = false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    	m.mutex.Lock()
    	defer m.mutex.Unlock()
    
    	if ep, exists := m.endpoints[resourceName]; exists {
    		m.markResourceUnhealthy(resourceName)
    		klog.V(2).InfoS("Endpoint became unhealthy", "resourceName", resourceName, "endpoint", ep)
    
    		ep.e.setStopTime(time.Now())
    	}
    }
    
    // PluginListAndWatchReceiver receives ListAndWatchResponse from a device plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top