Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 568 for transformAction (0.28 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        public void replace(Transformer<? extends @org.jetbrains.annotations.Nullable Provider<? extends T>, ? super Provider<T>> transformation) {
            Provider<? extends T> newValue = transformation.transform(shallowCopy());
            if (newValue != null) {
                set(newValue);
            } else {
                set((T) null);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/UncategorizedBuildOperations.java

     */
    public enum UncategorizedBuildOperations implements BuildOperationMetadata {
        /**
         * Creates and executes the transform actions. {@link BuildOperationCategory#TRANSFORM} can include this operation.
         */
        TRANSFORM_ACTION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1001 bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

    import org.gradle.internal.declarativedsl.analysis.ObjectOrigin
    import org.gradle.internal.declarativedsl.analysis.ResolutionResult
    import org.gradle.internal.declarativedsl.analysis.transformation.OriginReplacement.replaceReceivers
    import org.gradle.internal.declarativedsl.evaluator.features.ResolutionResultHandler
    import org.gradle.internal.declarativedsl.evaluator.softwareTypes.SOFTWARE_TYPE_ACCESSOR_PREFIX
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    type EndpointRestrictions interface {
    	// AllowsMediaTypeTransform returns true if the endpoint allows either the requested mime type
    	// or the requested transformation. If false, the caller should ignore this mime type. If the
    	// target is nil, the client is not requesting a transformation.
    	AllowsMediaTypeTransform(mimeType, mimeSubType string, target *schema.GroupVersionKind) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        const std::vector<OutputTensor>& arg_source_tensors,
        std::unique_ptr<Graph>* graph, std::vector<int>* input_permutation,
        std::vector<int>* output_permutation, NodeDef* node_def)>
        RewriteSubgraphFn;
    
    // Transformation that finds subgraphs whose nodes are marked with
    // 'group_attribute', splits those subgraphs into functions, and replaces
    // the originals with function calls.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

            // do nothing
        }
    
        /**
         * Checks the specified (raw) model for missing or invalid values. The raw model is the file model + buildpom filter
         * transformation and has not been subjected to inheritance, interpolation or profile/default injection.
         *
         * @param model The model to validate, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransform.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import java.io.File;
    
    /**
     * A "pending" transformation of the original jar/directory.
     */
    public interface ClasspathElementTransform {
        /**
         * Transform the jar/directory into destination. The destination should be a JAR file name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 1010 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/transformation/TransformationFailedException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.transformation;
    
    /**
     * Exception that may be thrown by the {@link org.apache.maven.artifact.Artifact#getFile()}
     * implementation.
     */
    public class TransformationFailedException extends RuntimeException {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/plugin/AbstractLanguagePluginSpec.groovy

    abstract class AbstractLanguagePluginSpec extends PlatformBaseSpecification {
        abstract Class getPluginClass()
    
        abstract Class getLanguageSourceSet()
    
        abstract String getLanguageId()
    
        def "registers transformation for language"() {
            when:
            dsl {
                apply plugin: pluginClass
            }
    
            then:
            def transform = realize("languageTransforms").find { it.languageName == languageId }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    import org.gradle.api.problems.Problems;
    import org.gradle.internal.operations.OperationIdentifier;
    
    /**
     * Describes a transformation that can be applied to a problem.
     * <p>
     * These transformers could be added to the {@link Problems} service to transform problems before they are reported.
     */
    public interface ProblemTransformer {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top