Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,565 for Applies (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/Exclude.java

         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
         * @return The set of configurations that apply, or an empty set if this exclude applies to _all_ configurations.
         */
        Set<String> getConfigurations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentMetadataProcessor.java

         * provided by a custom metadata processor.
         * @param metadata the metadata to be processed
         * @return updated metadata, if any component metadata rule applies.
         */
        ComponentMetadata processMetadata(ComponentMetadata metadata);
    
        int getRulesHash();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold.h

    #include "llvm/ADT/SmallVector.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    
    namespace mlir {
    namespace quant {
    
    // Applies constant folding recursively if the operation and all of its operands
    // are foldable. Returns the constants generated by constant-folding or the
    // original operation's outputs if not folded.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 04 14:27:31 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/index.md

    I will show you some of the main concepts you should probably keep in mind when deploying a **FastAPI** application (although most of it applies to any other type of web application).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/ProjectInterpretationSequenceStep.kt

    import org.gradle.plugin.software.internal.SoftwareTypeRegistry
    
    
    /**
     * A step in the interpretation sequence that processes the project build file and applies Software Type conventions
     * configured in the Settings DSL.
     */
    internal
    fun projectInterpretationSequenceStep(softwareTypeRegistry: SoftwareTypeRegistry) = SimpleInterpretationSequenceStepWithConversion(
        "project",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/ReflectionToObjectConverter.kt

    import org.gradle.declarative.dsl.schema.DataProperty
    import org.gradle.internal.declarativedsl.objectGraph.ObjectReflection
    
    
    /**
     * Takes a given {@link ObjectReflection} and applies its operations to the underlying object graph.
     */
    interface ReflectionToObjectConverter {
        fun apply(objectReflection: ObjectReflection, conversionFilter: ConversionFilter = ConversionFilter.none)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface ListenerService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. test/fixedbugs/bug097.go

    */
    
    /* An array composite literal needs to be created freshly every time.
    It is a "construction" of an array after all. If I pass the address
    of the array to some function, it may store it globally. Same applies
    to struct literals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/ComponentBasePluginTest.groovy

            when:
            dsl {
                apply plugin: 'component-base'
            }
    
            then:
            project.pluginManager.pluginContainer.hasPlugin(ComponentBasePlugin)
        }
    
        def "applies lifecycle base plugin only"() {
            when:
            dsl {
                apply plugin: ComponentBasePlugin
            }
    
            then:
            project.pluginManager.pluginContainer.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_unsupported.go

    */
    
    package kuberuntime
    
    import (
    	"k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top