Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 568 for transformAction (0.31 sec)

  1. android/guava/src/com/google/common/math/LinearTransformation.java

       * vertical transformation (i.e. when {@link #isVertical()} is true).
       */
      public abstract double transform(double x);
    
      /**
       * Returns the inverse linear transformation. The inverse of a horizontal transformation is a
       * vertical transformation, and vice versa. The inverse of the {@link #forNaN} transformation is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/util/internal/SupportedEncryptionAlgorithm.java

        AES_ECB_PADDING("AES/ECB/PKCS5PADDING", "AES", 0);
        private final String transformation;
        private final int initVectorLength;
        private final String algorithm;
    
        SupportedEncryptionAlgorithm(String transformation, String algorithm, int initVectorLength) {
            this.transformation = transformation;
            this.algorithm = algorithm;
            this.initVectorLength = initVectorLength;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 12:42:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/java/compile/AbstractGroovyCompileAvoidanceIntegrationSpec.groovy

            failure.assertHasCause('Bad AST transformation!')
        }
    
        def "recompile with change of global ast transformation"() {
            given:
            executer.beforeExecute {
                executer.withArgument('--info')
            }
            buildFile << astTransformationDeclaration()
            file("a/src/main/resources/META-INF/services/org.codehaus.groovy.transform.ASTTransformation") << "MyASTTransformation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/settings.gradle

    rootProject.name = 'compilation-avoidance'
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/transformer_test.go

    				"apiserver_storage_transformation_operations_total",
    			},
    			want: `
    	# HELP apiserver_storage_transformation_operations_total [ALPHA] Total number of transformations. Successful transformation will have a status 'OK' and a varied status string when the transformation fails. This status and transformation_type fields may be used for alerting on encryption/decryption failure using transformation_type from_storage for decryption and to_storage for encryption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    				"apiserver_storage_transformation_operations_total",
    			},
    			want: `
    				# HELP apiserver_storage_transformation_operations_total [ALPHA] Total number of transformations. Successful transformation will have a status 'OK' and a varied status string when the transformation fails. This status and transformation_type fields may be used for alerting on encryption/decryption failure using transformation_type from_storage for decryption and to_storage for encryption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/settings.gradle.kts

    rootProject.name = "compilation-avoidance"
    include("ast-transformation")
    include("ast-transformation-consumer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/crypto/CachedCipher.java

            this.algorithm = algorithm;
        }
    
        public String getTransformation() {
            return transformation;
        }
    
        public void setTransformation(final String transformation) {
            this.transformation = transformation;
        }
    
        public String getKey() {
            return key;
        }
    
        public void setKey(final String key) {
            this.key = key;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/transform/TransformationManagerTest.java

                    "We expected the release transformation and got " + tms.get(0));
    
            assertTrue(
                    tms.get(1) instanceof LatestArtifactTransformation,
                    "We expected the latest transformation and got " + tms.get(1));
    
            assertTrue(
                    tms.get(2) instanceof SnapshotTransformation,
                    "We expected the snapshot transformation and got " + tms.get(2));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    * `func(input I) *O` via `NewCollection`
        * This generates a one-to-one mapping of input to output. An example would be a transformation from a `Pod` type to a generic `Workload` type.
    * `func(input I) []O` via `NewManyCollection`
        * This generates a one-to-many mapping of input to output. An example would be a transformation from a `Service` to a _set_ of `Endpoint` types.
        * The order of the response does not matter. Each response must have a unique key.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top