Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for population (0.43 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

    	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)
    
    	metrics.Register(pm.actualStateOfWorld, pm.desiredStateOfWorld)
    	<-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. src/archive/tar/stat_unix.go

    	sys, ok := fi.Sys().(*syscall.Stat_t)
    	if !ok {
    		return nil
    	}
    	h.Uid = int(sys.Uid)
    	h.Gid = int(sys.Gid)
    	if doNameLookups {
    		// Best effort at populating Uname and Gname.
    		// The os/user functions may fail for any number of reasons
    		// (not implemented on that platform, cgo not enabled, etc).
    		if u, ok := userMap.Load(h.Uid); ok {
    			h.Uname = u.(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K 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. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationExecutorParallelExecutionTest.groovy

            e.message.startsWith("There was a failure while populating the build operation queue:")
            e.message.contains("operations failed")
            e.message.contains("failed operation 1")
            e.message.contains("failed operation 2")
            e.causes.size() == 2
            e.causes.any { it instanceof BuildOperationQueueFailure && it.message.startsWith("There was a failure while populating the build operation queue:") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager.go

    	"k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/volumemanager/cache"
    	"k8s.io/kubernetes/pkg/kubelet/volumemanager/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/volumemanager/populator"
    	"k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildControllers.java

    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.build.ExecutionResult;
    
    import java.io.Closeable;
    
    interface BuildControllers extends Closeable {
        /**
         * Finish populating work graphs, once all entry point tasks have been scheduled.
         */
        void populateWorkGraphs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 16 02:23:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            verifier.verify(logger, calls(1)).debug("  Excluded: {}", "group1:artifact2:ext:classifier1:null");
            verifier.verify(logger, calls(1))
                    .debug("Populating class realm {}", "project>modelGroup1:modelArtifact1:modelVersion1");
            verifier.verify(logger, calls(1)).debug("  Included: {}", "group1:artifact1:ext:classifier1:null");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

      }
    
      return compile_options;
    }
    
    // Gets `variables` from `ctx`, locks them and builds XlaCompiler::Arguments
    // using them. Stores the arguments in `args`. `variables` and `args` passed in
    // will be cleared before populating them.
    Status GetAndLockVariablesAndBuildXlaCompilerArguments(
        const OpKernelContext& ctx, const std::vector<const Tensor*>& inputs,
        const std::vector<int>& constant_indices,
        const std::vector<int>& variable_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top