Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,610 for Single (0.76 sec)

  1. test/fixedbugs/issue26616.go

    func f() {
    	var _ int = three() // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|multiple-value "
    	var a int = three() // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|multiple-value "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 19:41:41 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdReports.java

     */
    public interface PmdReports extends ReportContainer<SingleFileReport> {
    
        /**
         * The pmd (single file) HTML report
         *
         * @return The pmd (single file) HTML report
         */
        @Internal
        SingleFileReport getHtml();
    
        /**
         * The pmd (single file) XML report
         *
         * @return The pmd (single file) XML report
         */
        @Internal
        SingleFileReport getXml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.cc

    constexpr char kInvalidExecutorGraphMsg[] =
        "functions must be of a single Graph with single op Islands: ";
    
    }  // namespace
    
    mlir::LogicalResult VerifyExportSuitable(mlir::ModuleOp module) {
      mlir::WalkResult result = module.walk([&](mlir::func::FuncOp function) {
        if (!llvm::hasSingleElement(function)) {
          function.emitError(kInvalidExecutorGraphMsg)
              << "only single block functions are supported";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    		OR operator matches documents where any terms exist anywhere in the
    		text of a single document.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>Wildcard</dt>
    	<dd>
    		single and multiple character wildcard searches within single terms
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/LastCandidateCapabilityResolver.java

            CapabilitiesConflictHandler.CandidateDetails single = null;
            for (Capability capabilityVersion : capabilityVersions) {
                Collection<? extends CapabilitiesConflictHandler.CandidateDetails> candidates = details.getCandidates(capabilityVersion);
                int size = candidates.size();
                if (size >= 1) {
                    if (size == 1 && single == null) {
                        single = candidates.iterator().next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

                """.trimIndent(),
                resolver
            )
    
            val unresolvedFunctionCall = result.errors.single { it.errorReason is ErrorReason.UnresolvedFunctionCallSignature }.element as FunctionCall
            val assignmentInBlock = (unresolvedFunctionCall.args.single() as FunctionArgument.Lambda).block.statements.single() as Assignment
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                .mutate(FlavorContainer) { it.add named(Flavor, "flavor1") }
    
            then:
            single(toolChains).name == 'tc'
            platforms.size() == 1
            single(buildTypes).name == 'bt'
            single(flavors).name == 'flavor1'
        }
    
        def "creates binaries for executable"() {
            when:
            project.pluginManager.apply(NativeComponentModelPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		availableCPUs cpuset.CPUSet
    		expect        []int
    	}{
    		{
    			"single socket HT, 4 cores free",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			[]int{0, 1, 2, 3},
    		},
    		{
    			"single socket HT, 3 cores free",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 4, 5, 6),
    			[]int{0, 1, 2},
    		},
    		{
    			"single socket HT, 3 cores free (1 partially consumed)",
    			topoSingleSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def java = events.operation("Apply plugin org.gradle.java to root project 'single'")
            def javaBase = events.operation("Apply plugin org.gradle.api.plugins.JavaBasePlugin to root project 'single'")
            def base = events.operation("Apply plugin org.gradle.api.plugins.BasePlugin to root project 'single'")
    
            help.parent == configureRootProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/SingleEntryModuleLibrary.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * Single entry module library
     */
    public class SingleEntryModuleLibrary extends ModuleLibrary {
    
        private ModuleVersionIdentifier moduleVersion;
    
        /**
         * Creates single entry module library
         *
         * @param library a path to jar or class folder in idea format
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top