Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for addOption (0.26 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        @SerialName("configuringLambdaArgument")
        data class DefaultConfiguringLambdaArgument(override val objectType: DataTypeRef) : ConfigureAccessor.ConfiguringLambdaArgument
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    }
    
    
    @Serializable
    data class DefaultFqName(override val packageName: String, override val simpleName: String) : FqName {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

                }
                return map;
            }
    
            public void nodeRemoved(ModelNodeInternal node) {
                // This could be more efficient; assume that removal happens much less often than addition
                for (ModelNode.State state : ModelNode.State.values()) {
                    Map<String, List<RuleBinder>> byState = getByState(state);
                    List<RuleBinder> remove = byState.remove(node.getPath().toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        }
    
        /**
         * Returns the ClassLoader that contains the Java platform classes only. This is different to {@link ClassLoader#getSystemClassLoader()}, which includes the application classes in addition to the
         * platform classes.
         */
        public static ClassLoader getPlatformClassLoader() {
            return ClassLoader.getSystemClassLoader().getParent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    Gradle manages this distinction via the <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library Plugin>>, which introduces an _api_ configuration in addition to the _implementation_ once covered in this chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Replace quantization candidates with composite functions into the module.";
      let description = [{
        Mark frequent fusible patterns as functions for quantization targets.
        In addition to brining performance benefits by reducing q/dq op overhead in non-full quantization,
        this brings higher accuracy by keeping a smaller range when quantizing ops
        that disperse values. (ex: convolution, dot_general)
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Gradle enforces isolation of instances of `ComponentMetadataRule`.
    This means that all parameters must be `Serializable` or known Gradle types that can be isolated.
    
    In addition, Gradle services can be injected into your `ComponentMetadataRule`.
    Because of this, the moment you have a constructor, it must be annotated with `@javax.inject.Inject`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

                model.setDependencies(convertDependencies(dependencies));
            }
    
            XmlTransformer xmlTransformer = new XmlTransformer();
            xmlTransformer.addAction(pom.getXmlAction());
            if (pom.getWriteGradleMetadataMarker().get()) {
                xmlTransformer.addFinalizer(SerializableLambdas.action(MavenPomFileGenerator::insertGradleMetadataMarker));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/internal/reflectlite/type.go

    }
    
    // add returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func add(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     * </p>
     *     <ul>
     *         <li>{@link SingleElement} to represent a single element addition
     *         <li>{@link ElementFromProvider} to represent a single element added as a provider
     *         <li>{@link ElementsFromArray} to represent a single element added as an array</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

    /**
     * Using simple dotted expressions to extract the values from an Object instance using JSP-like expressions
     * such as {@code project.build.sourceDirectory}.
     * <p>
     * In addition to usual getters using {@code getXxx} or {@code isXxx} suffixes, accessors
     * using {@code asXxx} or {@code toXxx} prefixes are also supported.
     */
    public class ReflectionValueExtractor {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top