Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,083 for Applies (0.12 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

        /**
         * Returns the Eclipse natures configured on the project.
         * <p>
         * Some natures are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javanature"} entry. Note, that the exact list of automatically added
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.td

              "static-range-ptq-to-all", "Applies `StaticRangePtq` to all quantizable units."),
            clEnumValN(mlir::quant::stablehlo::testing::TestQuantizationSpecs::kStaticRangePtqToComputeHeavy,
              "static-range-ptq-to-compute-heavy", "Applies `StaticRangePtq` to only compute heavy units.")
          )}]>
      ];
      let dependentDialects = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// Zero the permutation's state.
    	for i := range d.a {
    		d.a[i] = 0
    	}
    	d.state = spongeAbsorbing
    	d.i, d.n = 0, 0
    }
    
    func (d *state) clone() *state {
    	ret := *d
    	return &ret
    }
    
    // permute applies the KeccakF-1600 permutation. It handles
    // any input-output buffering.
    func (d *state) permute() {
    	switch d.state {
    	case spongeAbsorbing:
    		// If we're absorbing, we need to xor the input into the state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. internal/s3select/sql/statement.go

    	default:
    		r := int64(*v.Int)
    		if r < 0 {
    			return -1, errBadLimitSpecified
    		}
    		return r, nil
    	}
    }
    
    // EvalFrom evaluates the From clause on the input record. It only
    // applies to JSON input data format (currently).
    func (e *SelectStatement) EvalFrom(format string, input Record) ([]*Record, error) {
    	if !e.selectAST.From.HasKeypath() {
    		return []*Record{&input}, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4099.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check go:noescape annotations.
    
    package p
    
    // The noescape comment only applies to the next func,
    // which must not have a body.
    
    //go:noescape
    
    func F1([]byte)
    
    func F2([]byte)
    
    func G() {
    	var buf1 [10]byte
    	F1(buf1[:])
    
    	var buf2 [10]byte // ERROR "moved to heap: buf2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 509 bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

        }
    
        void applyPlugin() {
            settingsFile << fixture.plugins()
        }
    
        def "automatically applies plugin when --scan is provided on command-line"() {
            when:
            runBuildWithScanRequest()
    
            then:
            pluginAppliedOnce()
        }
    
        def "only applies once when -b used"() {
            when:
            file("other-build.gradle") << "task dummy {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

    import static org.gradle.util.internal.WrapUtil.toLinkedSet
    
    class JavaBasePluginTest extends AbstractProjectBuilderSpec {
        @Rule
        public SetSystemProperties sysProperties = new SetSystemProperties()
    
        def "applies base plugins and adds convention and extensions"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
    
            then:
            project.plugins.hasPlugin(ReportingBasePlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsExtensions.kt

    import org.gradle.api.initialization.Settings
    import org.gradle.api.plugins.PluginAware
    import org.gradle.kotlin.dsl.support.serviceOf
    
    import kotlin.reflect.KProperty
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GradleExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.Plugin
    import org.gradle.api.invocation.Gradle
    import org.gradle.api.plugins.PluginAware
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ExtractedRuleSource.java

    import org.gradle.model.internal.core.MutableModelNode;
    import org.gradle.model.internal.registry.ModelRegistry;
    
    import java.util.List;
    
    public interface ExtractedRuleSource<T> {
        /**
         * Applies the rules of this rule source to the given element.
         */
        void apply(ModelRegistry modelRegistry, MutableModelNode target);
    
        /**
         * Returns the set of plugins required by the rules of this rule source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top