Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for setIvy (0.17 sec)

  1. src/main/java/org/codelibs/core/crypto/CachedCipher.java

        }
    
        public void setTransformation(final String transformation) {
            this.transformation = transformation;
        }
    
        public String getKey() {
            return key;
        }
    
        public void setKey(final String key) {
            this.key = key;
        }
    
        public String getCharsetName() {
            return charsetName;
        }
    
        public void setCharsetName(final String charsetName) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

                result.setCrawlingInfoId(DfTypeUtil.toString(source.get("crawlingInfoId")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setKey(DfTypeUtil.toString(source.get("key")));
                result.setValue(DfTypeUtil.toString(source.get("value")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        }
    
        public void setArtifactUri(String artifactUri) {
            this.artifactUri = artifactUri;
        }
    
        public String getWhy() {
            return why;
        }
    
        public void setWhy(String why) {
            this.why = why;
        }
    
        public String getError() {
            return error;
        }
    
        public void setError(String error) {
            this.error = error;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                            performanceResults.setVersionUnderTest(testExecutions.getString(4));
                            performanceResults.setOperatingSystem(testExecutions.getString(5));
                            performanceResults.setJvm(testExecutions.getString(6));
                            performanceResults.setVcsBranch(testExecutions.getString(7).trim());
                            performanceResults.setVcsCommits(split(testExecutions.getString(8)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

            private Resource jar
            private final IvyFileGenerator ivyGenerator = new IvyFileGenerator()
            private final JarFileGenerator jarGenerator = new JarFileGenerator()
    
            Resource getIvy() {
                synchronized (lock) {
                    maybeReset()
                    if (ivy == null) {
                        ivy = ivyGenerator.regenerate()
                    }
                    return ivy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/config.go

    	"github.com/minio/minio/internal/kms"
    )
    
    const (
    	minioConfigPrefix = "config"
    	minioConfigBucket = minioMetaBucket + SlashSeparator + minioConfigPrefix
    	kvPrefix          = ".kv"
    
    	// Captures all the previous SetKV operations and allows rollback.
    	minioConfigHistoryPrefix = minioConfigPrefix + "/history"
    
    	// MinIO configuration file.
    	minioConfigFile = "config.json"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                    final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam();
                    crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId());
                    crawlingInfoParam.setKey(entry.getKey());
                    crawlingInfoParam.setValue(entry.getValue());
                    crawlingInfoParamList.add(crawlingInfoParam);
                }
                getCrawlingInfoService().storeInfo(crawlingInfoParamList);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         */
        @Override
        public String getKey () {
            return this.key;
        }
    
    
        /**
         * @param key
         *            the key to set
         */
        @Override
        public void setKey ( String key ) {
            this.key = key;
        }
    
    
        @Override
        public String getServer () {
            return this.server;
        }
    
    
        @Override
        public String getShare () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

    public class RoleQueryHelperTest extends UnitFessTestCase {
        public CachedCipher cipher;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            cipher = new CachedCipher();
            cipher.setKey("1234567890123456");
        }
    
        private Set<String> buildByParameter(final RoleQueryHelper roleQueryHelperImpl, final HttpServletRequest request) {
            Set<String> roleSet = new HashSet<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                        }
    
                        final CrawlingInfoParam entity = new CrawlingInfoParam();
                        entity.setCrawlingInfoId(crawlingInfo.getId());
                        entity.setKey(list.get(2));
                        entity.setValue(list.get(3));
                        entity.setCreatedTime(formatter.parse(list.get(4)).getTime());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top