Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 246 for Transformed (0.15 sec)

  1. src/mdo/transformer.vm

    #end
    import org.apache.maven.internal.xml.XmlNodeImpl;
    
    @Generated
    public class ${className} {
    
        private final Function<String, String> transformer;
    
        public ${className}(Function<String, String> transformer) {
            this.transformer = transformer;
        }
    
        /**
         * Transforms the given model
         */
        public ${root.name} visit(${root.name} target) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/Transformer.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.transformer;
    
    import org.codelibs.fess.crawler.entity.AccessResultData;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.entity.ResultData;
    
    /**
     * @author shinsuke
     *
     */
    public interface Transformer {
    
        ResultData transform(ResponseData responseData);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			}
    			if stale != (transformer.Name != testCase.Name) {
    				t.Fatalf("%s: wrong stale information on reading using %s transformer, should be %v", testCase.Name, transformer.Name, testCase.Name == transformer.Name)
    			}
    			if !bytes.Equal(untransformedData, originalText) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        }
                    }
                }
            }
        }
    
        // resolve constant-looking expressions statically (do here as gets transformed away later)
        private Expression transformInlineConstants(Expression exp) {
            if (exp instanceof PropertyExpression) {
                PropertyExpression pe = (PropertyExpression) exp;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    grown up, possessed himself of a real horse, and trotted away into the other world. Fair wards of court have faded into mothers and grandmothers; a long procession of Chancellors has come in and gone out; the legion of bills in the suit have been transformed into mere bills of mortality; there are not three Jarndyces left upon the earth perhaps, since old Tom Jarndyce in despair blew his brains out at a coffee-house in Chancery Lane; but Jarndyce and Jarndyce still drags its dreary length before the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    		// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    		case objabi.R_GOTPCREL:
    			if target.IsDynlinkingGo() && target.IsDarwin() && rs != 0 {
    				nExtReloc++
    				o = r.Add()
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    ====
    
    The resolved set of artifacts can be obtained lazily from the incoming artifacts of a `Configuration`.
    Given the `ResolvedArtifactResult` type contains both metadata and file information, instances need to be transformed to metadata only before being wired to an `@Input` property:
    
    .Resolved artifacts as task input
    ====
    .Task declaration
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            output.text == "16"
    
            when:
            input.text = "10"
            configurationCacheRun(":transformer")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "22"
    
            when:
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedTransformOutputFixture.java

        private final String initialSubjectType;
        private final String subject;
        private final String transformer;
    
        public GroupedTransformOutputFixture(String initialSubjectType, String subject, String transformer) {
            this.initialSubjectType = initialSubjectType;
            this.subject = subject;
            this.transformer = transformer;
        }
    
        public String getInitialSubjectType() {
            return initialSubjectType;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java

            }
        }
    
        public Transformer getTransformer() {
            return transformer;
        }
    
        public void setTransformer(final Transformer transformer) {
            this.transformer = transformer;
        }
    
        public int[] getSuccessfulHttpCodes() {
            return successfulHttpCodes;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top