Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for population (0.15 sec)

  1. docs/select/README.md

            print("Stats details bytesProcessed: ")
            print(statsDetails['BytesProcessed'])
    ```
    
    ## 4. Run the Program
    
    Upload a sample dataset to MinIO using the following commands.
    
    ```sh
    curl "https://population.un.org/wpp/Download/Files/1_Indicators%20(Standard)/CSV_FILES/WPP2019_TotalPopulationBySex.csv" > TotalPopulation.csv
    mc mb myminio/mycsvbucket
    gzip TotalPopulation.csv
    mc cp TotalPopulation.csv.gz myminio/mycsvbucket/sampledata/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/internal/sys/intrinsics.go

    // --- OnesCount ---
    
    const m0 = 0x5555555555555555 // 01010101 ...
    const m1 = 0x3333333333333333 // 00110011 ...
    const m2 = 0x0f0f0f0f0f0f0f0f // 00001111 ...
    
    // OnesCount64 returns the number of one bits ("population count") in x.
    func OnesCount64(x uint64) int {
    	// Implementation: Parallel summing of adjacent bits.
    	// See "Hacker's Delight", Chap. 5: Counting Bits.
    	// The following pattern shows the general approach:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.settings.Settings;
    import org.apache.maven.toolchain.model.PersistedToolchains;
    
    /**
     * Assists in populating an execution request for invocation of Maven.
     *
     */
    public interface MavenExecutionRequestPopulator {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top