Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for sdivisible (0.15 sec)

  1. src/cmd/compile/internal/ssa/magic.go

    		k:   int64(k),
    		m:   m,
    		a:   a,
    		max: max,
    	}
    }
    
    func sdivisible8(c int8) sdivisibleData   { return sdivisible(8, int64(c)) }
    func sdivisible16(c int16) sdivisibleData { return sdivisible(16, int64(c)) }
    func sdivisible32(c int32) sdivisibleData { return sdivisible(32, int64(c)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	a := n1%64 == 0 // signed divisible
    
    	// 386:"TESTL\t[$]63",-"DIVL",-"SHRL"
    	// amd64:"TESTQ\t[$]63",-"DIVQ",-"SHRQ"
    	// arm:"AND\t[$]63",-".*udiv",-"SRA"
    	// arm64:"TST\t[$]63",-"UDIV",-"ASR",-"AND"
    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	b := n2%64 != 0 // signed indivisible
    
    	return a, b
    }
    
    // Check that constant modulo divs get turned into MULs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            Configuration implementationConfiguration = configurations.maybeCreate(implementationRequest);
            implementationConfiguration.setVisible(false);
            implementationConfiguration.setDescription("Implementation only dependencies for " + sourceSetName + ".");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

            agentConf.setVisible(false);
            agentConf.setTransitive(true);
            agentConf.setDescription("The Jacoco agent to use to get coverage data.");
            Configuration antConf = configurations.resolvableDependencyScopeUnlocked(ANT_CONFIGURATION_NAME);
            antConf.setVisible(false);
            antConf.setTransitive(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            jvmPluginServices.configureAsRuntimeClasspath(plugins);
    
            Configuration zinc = project.getConfigurations().resolvableDependencyScopeUnlocked(ZINC_CONFIGURATION_NAME);
            zinc.setVisible(false);
            zinc.setDescription("The Zinc incremental compiler to be used for this Scala project.");
    
            zinc.getResolutionStrategy().eachDependency(rule -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            Configuration apiElements = maybeCreateElementsConfiguration(configName, configurations, useMigrationRoleForElementsConfigurations);
    
            apiElements.setVisible(false);
            jvmLanguageUtilities.useDefaultTargetPlatformInference(apiElements, compileJava);
            jvmPluginServices.configureAsApiElements(apiElements);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

            Configuration runtimeElements = project.getConfigurations().migratingUnlocked(name, ConfigurationRolesForMigration.CONSUMABLE_DEPENDENCY_SCOPE_TO_CONSUMABLE);
            runtimeElements.setVisible(false);
            runtimeElements.extendsFrom(apiElements);
            declareConfigurationUsage(project.getObjects(), runtimeElements, Usage.JAVA_RUNTIME);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    }
    
    // -----
    
    // Check number of replicated inputs is evenly divisible by 'n'.
    func.func @verifier_replicate_bad_operandSegmentSizes(%arg0: tensor<*xi32>) {
      "tf_device.replicate" (%arg0, %arg0, %arg0, %arg0) ({
    // expected-error@-1 {{'tf_device.replicate' op expects number of replicated inputs (4) to be evenly divisible by 'n' (3)}}
      ^entry(%input0: tensor<*xi32>, %input1: tensor<*xi32>):
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/helpers.go

    	pageSize := strings.TrimPrefix(string(name), v1.ResourceHugePagesPrefix)
    	return resource.ParseQuantity(pageSize)
    }
    
    // HugePageUnitSizeFromByteSize returns hugepage size has the format.
    // `size` must be guaranteed to divisible into the largest units that can be expressed.
    // <size><unit-prefix>B (1024 = "1KB", 1048576 = "1MB", etc).
    func HugePageUnitSizeFromByteSize(size int64) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

                additionalAuxDepsConfiguration.setDescription("The additional libraries that are available for type resolution during analysis");
                additionalAuxDepsConfiguration.setVisible(false);
            });
            getJvmPluginServices().configureAsRuntimeClasspath(auxClasspath);
        }
    
        @Override
        protected void configureConfiguration(Configuration configuration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top