Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for getGenerator (0.18 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/SingleOutputTaskMavenArtifact.java

            this.classifier = classifier;
            this.buildDependencies = taskDependencyFactory.visitingDependencies(context -> context.add(getGenerator()));
        }
    
        @Override
        public File getFile() {
            return getGenerator().getOutputs().getFiles().getSingleFile();
        }
    
        private Task getGenerator() {
            return generator.get();
        }
    
        @Override
        protected String getDefaultExtension() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public String getGenerator() {
            checkSpecifiedProperty("generator");
            return convertEmptyToNull(generator);
        }
    
        public void setGenerator(String value) {
            registerModifiedProperty("generator");
            this.generator = value;
        }
    
        public String getPath() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

                    (et, vl) -> ((ThumbnailQueue) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getGenerator(),
                    (et, vl) -> ((ThumbnailQueue) et).setGenerator(DfTypeUtil.toString(vl)), "generator");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getPath(), (et, vl) -> ((ThumbnailQueue) et).setPath(DfTypeUtil.toString(vl)),
                    "path");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         */
        public void generate() {
            Generator generator = getGenerator();
            if (generator == null) {
                return;
            }
            generator.generate();
        }
    
        @Nullable
        Generator getGenerator() {
            File toSign = getToSign();
            if (toSign == null) {
                if (signatureSpec.isRequired()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AbstractClassGeneratorSpec.groovy

    abstract class AbstractClassGeneratorSpec extends Specification {
        @ClassRule
        @Shared
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        abstract ClassGenerator getGenerator()
    
        protected <T> T createForSerialization(Class<T> clazz) {
            def nested = Stub(InstanceGenerator)
            _ * nested.newInstanceWithDisplayName(_, _, _) >> { type, name, params -> create(type) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

            def text = new ByteArrayOutputStream()
            getGenerator(options).write(result, text)
            return text.toString("UTF-8").replace(SystemProperties.instance.lineSeparator, "\n")
        }
    
        private JUnitXmlResultWriter getGenerator(JUnitXmlResultOptions options) {
            return new JUnitXmlResultWriter("localhost", provider, options)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterMergeRerunSpec.groovy

    import spock.lang.Specification
    
    class JUnitXmlResultWriterMergeRerunSpec extends Specification {
    
        def provider = new BuildableTestResultsProvider()
        def outputPerTestCase = true
    
        protected JUnitXmlResultWriter getGenerator() {
            new JUnitXmlResultWriter("localhost", provider, new JUnitXmlResultOptions(outputPerTestCase, true, true, true))
        }
    
        def "merges for simple case - output per testcase"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

            if (getSignatory() == null) {
                // The task will fail, so we don't need any state.
                return Collections.emptyList();
            }
            return signatureStream()
                .map(Signature::getGenerator)
                .filter(Objects::nonNull)
                .collect(Collectors.toList());
        }
    
        private Stream<Signature> signatureStream() {
            return getSignatures().stream();
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            systemHelper.calibrateCpuLoad();
    
            if (logger.isDebugEnabled()) {
                logger.debug("Processing thumbnail: {}", entity);
            }
            final String generatorName = entity.getGenerator();
            try {
                final File outputFile = new File(baseDir, entity.getPath());
                final File noImageFile = new File(outputFile.getAbsolutePath() + NOIMAGE_FILE_SUFFIX);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/nistec_test.go

    		benchmarkScalarMult(b, nistec.NewP224Point().SetGenerator(), 28)
    	})
    	b.Run("P256", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP256Point().SetGenerator(), 32)
    	})
    	b.Run("P384", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP384Point().SetGenerator(), 48)
    	})
    	b.Run("P521", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP521Point().SetGenerator(), 66)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top