Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for postbox (0.12 sec)

  1. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                    }
                    final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
                    try {
                        final NotificationHelper notificationHelper = ComponentUtil.getNotificationHelper();
                        SMailCallbackContext.setPreparedMessageHookOnThread(notificationHelper::send);
                        EsStatusPostcard.droppedInto(postbox, postcard -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        //                                                                         ===========
        public static TestmailPostcard droppedInto(Postbox postbox, MPCall<TestmailPostcard> postcardLambda) {
            TestmailPostcard postcard = new TestmailPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        //                                                                         ===========
        public static EsStatusPostcard droppedInto(Postbox postbox, MPCall<EsStatusPostcard> postcardLambda) {
            EsStatusPostcard postcard = new EsStatusPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

                final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
                final String toStrs = fessConfig.getNotificationTo();
                final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
                try {
                    final String[] toAddresses;
                    if (StringUtil.isNotBlank(toStrs)) {
                        toAddresses = toStrs.split(",");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            dataMap.put("hostname", systemHelper.getHostname());
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
            try {
                TestmailPostcard.droppedInto(postbox, postcard -> {
                    postcard.setFrom(fessConfig.getMailFromAddress(), fessConfig.getMailFromName());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

        //                                                                         ===========
        public static CrawlerPostcard droppedInto(Postbox postbox, MPCall<CrawlerPostcard> postcardLambda) {
            CrawlerPostcard postcard = new CrawlerPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"portugal":                             "\U0001f1f5\U0001f1f9",
    	"post_office":                          "\U0001f3e3",
    	"postal_horn":                          "\U0001f4ef",
    	"postbox":                              "\U0001f4ee",
    	"potable_water":                        "\U0001f6b0",
    	"potato":                               "\U0001f954",
    	"potted_plant":                         "\U0001fab4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. src/net/http/cgi/host_test.go

    Host: example.com
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 15
    
    postfoo=postbar`
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    	}
    	expectedMap := map[string]string{
    		"test":               "Hello CGI",
    		"param-postfoo":      "postbar",
    		"env-REQUEST_METHOD": "POST",
    		"env-CONTENT_LENGTH": "15",
    		"env-REQUEST_URI":    "/test.cgi?a=b",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/progress/SimpleProgressFormatter.java

    class SimpleProgressFormatter implements ProgressFormatter {
        private final int total;
        private int current;
        private String postfix;
    
        public SimpleProgressFormatter(int total, String postfix) {
            this.total = total;
            this.postfix = postfix;
        }
    
        @Override
        public String incrementAndGetProgress() {
            if (current == total) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

        private final Spec<? super FileTreeElement> spec;
        private final boolean postfix;
        private final FileVisitor visitor;
        private final AtomicBoolean stopFlag;
        private final RelativePath rootPath;
        private final FileSystem fileSystem;
    
        public PathVisitor(Spec<? super FileTreeElement> spec, boolean postfix, FileVisitor visitor, AtomicBoolean stopFlag, RelativePath rootPath, FileSystem fileSystem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top