Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,040 for populator (0.26 sec)

  1. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/MavenProjectsCreator.java

                return currentProperties;
            });
    
            executionRequest.setSystemProperties(properties);
            MavenExecutionRequestPopulator populator = container.lookup(MavenExecutionRequestPopulator.class);
            populateFromSettings(settings, executionRequest, populator);
            populator.populateDefaults(executionRequest);
            ProjectBuildingRequest buildingRequest = executionRequest.getProjectBuildingRequest();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/plugin_manager.go

    	defer runtime.HandleCrash()
    
    	if err := pm.desiredStateOfWorldPopulator.Start(stopCh); err != nil {
    		klog.ErrorS(err, "The desired_state_of_world populator (plugin watcher) starts failed!")
    		return
    	}
    
    	klog.V(2).InfoS("The desired_state_of_world populator (plugin watcher) starts")
    
    	klog.InfoS("Starting Kubelet Plugin Manager")
    	go pm.reconciler.Run(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package populator implements interfaces that monitor and keep the states of the
    // desired_state_of_word in sync with the "ground truth" from informer.
    package populator
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    /*
    Package populator implements interfaces that monitor and keep the states of the
    caches in sync with the "ground truth".
    */
    package populator
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		t.Fatalf("Failed to record that the volumes for the specified pod: %s have been processed by the populator", podName)
    	}
    	pluginPVOmittingClient(dswp)
    
    	dswp.ReprocessPod(podName)
    	dswp.findAndAddNewPods()
    
    	if !dswp.podPreviouslyProcessed(podName) {
    		t.Fatalf("Failed to record that the volumes for the specified pod: %s have been processed by the populator", podName)
    	}
    	fakePodManager.RemovePod(pod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager.go

    	// the world according to the volume manager: i.e. what volumes should be
    	// attached and which pods are referencing the volumes).
    	// The data structure is populated by the desired state of the world
    	// populator using the kubelet pod manager.
    	desiredStateOfWorld cache.DesiredStateOfWorld
    
    	// actualStateOfWorld is a data structure containing the actual state of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package populator
    
    import (
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	k8stypes "k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// volumes
    	nodeStatusUpdater statusupdater.NodeStatusUpdater
    
    	// desiredStateOfWorldPopulator runs an asynchronous periodic loop to
    	// populate the current pods using podInformer.
    	desiredStateOfWorldPopulator populator.DesiredStateOfWorldPopulator
    
    	// broadcaster is broadcasting events
    	broadcaster record.EventBroadcaster
    
    	// pvcQueue is used to queue pvc objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. pkg/api/persistentvolumeclaim/util.go

    	// volume, or it wants to update a PVC that has a data source. Whether the
    	// specified data source is valid or satisfiable is a matter for validation and
    	// the volume populator code, but we can say with certainty that the client is
    	// not expecting the legacy behavior of ignoring invalid data sources.
    	if pvcSpec.DataSourceRef != nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    //
    // desiredStateOfWorld - cache containing the desired state of the world
    //
    // actualStateOfWorld - cache containing the actual state of the world
    //
    // populatorHasAddedPods - checker for whether the populator has finished
    // adding pods to the desiredStateOfWorld cache at least once after sources
    // are all ready (before sources are ready, pods are probably missing)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top