Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 611 for transform1 (0.15 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

        }
    
        def "replace transformation runs eagerly"() {
            given:
            Transformer<Provider<String>, Provider<String>> transform = Mock()
            def property = property().value(someValue())
    
            when:
            property.replace(transform)
    
            then:
            1 * transform.transform(_)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

    import org.gradle.internal.operations.CallableBuildOperation;
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.operations.dependencies.transforms.ExecutePlannedTransformStepBuildOperationType;
    import org.gradle.operations.dependencies.transforms.PlannedTransformStepIdentity;
    import org.gradle.operations.dependencies.variants.Capability;
    import org.gradle.operations.dependencies.variants.ComponentIdentifier;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertTrue(transformer.isValidUrl("http://www.example.com"));
            assertTrue(transformer.isValidUrl("http://www.example.com/aaa"));
            assertTrue(transformer.isValidUrl("https://www.example.com"));
            assertTrue(transformer.isValidUrl("://www.example.com"));
            assertTrue(transformer.isValidUrl("//www.example.com"));
    
            assertFalse(transformer.isValidUrl(null));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope_test.go

    					t.Fatalf("envelopeTransformer transformed data incorrectly. Expected: %v, got %v", originalText, untransformedData)
    				}
    			}
    		})
    	}
    }
    
    // Makes Envelope transformer hit cache limit, throws error if it misbehaves.
    func TestEnvelopeCacheLimit(t *testing.T) {
    	cbcTransformer := func(block cipher.Block) (value.Transformer, error) {
    		return aestransformer.NewCBCTransformer(block), nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

                }
            }
        }
    
        private <T extends NativeCompileSpec> Transformer<T, T> pchSpecTransforms(final Class<T> type) {
            return new Transformer<T, T>() {
                @Override
                public T transform(T original) {
                    List<Transformer<T, T>> transformers = new ArrayList<>();
                    transformers.add(PCHUtils.getHeaderToSourceFileTransformer(type));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

            e.message == toPlatformLineSeparators("""Found multiple transforms that can produce a variant of <component> with requested attributes:
      - artifactType 'dll'
    Found the following transforms:
      - From '<variant1>':
          - With source attributes: artifactType 'jar'
          - Candidate transform(s):
              - Transform '' producing attributes: artifactType 'dll'
      - From '<variant2>':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	// requires.
    	RequiresExactMatch(field string) (value string, found bool)
    
    	// Transform returns a new copy of the selector after TransformFunc has been
    	// applied to the entire selector, or an error if fn returns an error.
    	// If for a given requirement both field and value are transformed to empty
    	// string, the requirement is skipped.
    	Transform(fn TransformFunc) (Selector, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, extensive cross-project access")
        def "artifact transforms are sensitive to empty directories by default"() {
            // Immutable artifact transforms are cached to the GradleUserHome,
            // so to avoid flakiness we need to request own GradleUserHome
            executer.requireOwnGradleUserHomeDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    == Invalid use of an output property on an artifact transforms
    
    This error indicates that you have annotated a property of an artifact transform with an output annotation, which is not the correct way to register outputs for artifact transforms.
    
    To fix this problem, you must remove the property and use the `TransformOutputs` parameter instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

            buildFile """
    interface Transformer {}
    
    class Impl implements Transformer {}
    
    class MyTask extends DefaultTask {
        public void transform(Class<? extends Transformer> c) {
            logger.lifecycle("transform(Class)")
        }
    
        public void transform(Transformer t) {
            logger.lifecycle("transform(Transformer)")
        }
    }
    
    task print(type: MyTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top