Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for population (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // POPCNT treats the input register as a vector of 8 bytes, producing
    // a population count for each individual byte. For inputs larger than
    // a single byte we therefore need to sum the individual bytes produced
    // by the POPCNT instruction. For example, the following instruction
    // sequence could be used to calculate the population count of a 4-byte
    // value:
    //
    //     MOVD   $0x12345678, R1 // R1=0x12345678 <-- input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    			reg:          regInfo{inputs: gponly, outputs: []regMask{buildReg("R0")}, clobbers: buildReg("R1")},
    			asm:          "FLOGR",
    			typ:          "UInt64",
    			clobberFlags: true,
    		},
    
    		// population count
    		//
    		// Counts the number of ones in each byte of arg0
    		// and places the result into the corresponding byte
    		// of the result.
    		{
    			name:         "POPCNT",
    			argLength:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This feature will be removed in Gradle 9.0.
    
    Eager population of the publication can happen if the following methods are called:
    
    * Maven
    ** link:{javadocPath}/org/gradle/api/publish/maven/MavenPublication.html#getArtifacts--[MavenPublication.getArtifacts()]
    * Ivy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (2)
  4. 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)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (!extClassPath.isEmpty() || !extensions.isEmpty()) {
                ClassRealm extRealm = classWorld.newRealm("maven.ext", null);
    
                extRealm.setParentRealm(coreRealm);
    
                slf4jLogger.debug("Populating class realm '{}'", extRealm.getId());
    
                for (File file : extClassPath) {
                    slf4jLogger.debug("  included '{}'", file);
    
                    extRealm.addURL(file.toURI().toURL());
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

          // pessimistic mode.
          TF_RETURN_IF_ERROR(
              PopulateFrame(sub_topo, /*use_optimistic_mode=*/false, nullptr));
        }
        VLOG(2) << "Done populating frame " << cur_frame_name << " using the "
                << (success ? "optimistic" : "pessimistic") << " mode.";
      }
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top