Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for postbox (0.18 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. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

        private final PatternSet patternSet;
        private final boolean postfix;
        private final FileSystem fileSystem;
    
        public DirectoryFileTree(File dir, PatternSet patternSet, FileSystem fileSystem) {
            this(dir, patternSet, fileSystem, false);
        }
    
        @VisibleForTesting
        public DirectoryFileTree(File dir, PatternSet patternSet, FileSystem fileSystem, boolean postfix) {
            this.patternSet = patternSet;
            this.dir = dir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

            val annotations = type.annotations
                .filter { it.annotationClass?.classId != StandardClassIds.Annotations.ExtensionFunctionType }
    
            printer.printCollectionIfNotEmpty(annotations, separator = " ", postfix = "  ") {
                renderTypeAnnotationDebug(it, printer)
            }
        }
    
        private fun Fe10AnalysisContext.renderTypeAnnotationDebug(annotation: AnnotationDescriptor, printer: PrettyPrinter) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top