Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for postbox (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. helm/minio/templates/post-job.yaml

          {{- end }}
        spec:
          restartPolicy: OnFailure
          {{- include "minio.imagePullSecrets" . | indent 6 }}
          {{- if .Values.nodeSelector }}
          nodeSelector: {{- toYaml .Values.postJob.nodeSelector | nindent 8 }}
          {{- end }}
          {{- with .Values.postJob.affinity }}
          affinity: {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- with .Values.postJob.tolerations }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ssa/branchelim.go

    		e := dom.Succs[i]
    		e.b.Preds[e.i].b = dom
    	}
    
    	// Try really hard to preserve statement marks attached to blocks.
    	simplePos := simple.Pos
    	postPos := post.Pos
    	simpleStmt := simplePos.IsStmt() == src.PosIsStmt
    	postStmt := postPos.IsStmt() == src.PosIsStmt
    
    	for _, v := range simple.Values {
    		v.Block = dom
    	}
    	for _, v := range post.Values {
    		v.Block = dom
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                separator = ",\n  ",
                prefix = "{\n  ",
                postfix = "\n}"
            ) { (k, v) -> "${k?.let { stringRepresentation(it).indented() }} -> (${v?.let { stringRepresentation(it).indented() }})" }
            is Collection<*> -> if (isEmpty()) "[]" else joinToString(
                separator = ",\n  ",
                prefix = "[\n  ",
                postfix = "\n]"
            ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                            append(part.name)
                            if (part.typeArgumentList.typeArguments.isNotEmpty()) {
                                part.typeArgumentList.typeArguments.joinTo(this, prefix = "<", postfix = ">") { it.renderTypeAsKotlinType() }
                            }
                        }
                    }
                    if (isMarkedNullable) "$renderedQualifier?" else renderedQualifier
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    	}
    }
    
    func TestNormalizedImageName(t *testing.T) {
    	for _, testCase := range []struct {
    		Name   string
    		Input  string
    		Output string
    	}{
    		{Name: "add :latest postfix 1", Input: "root", Output: "root:latest"},
    		{Name: "add :latest postfix 2", Input: "gcr.io:5000/root", Output: "gcr.io:5000/root:latest"},
    		{Name: "keep it as is 1", Input: "root:tag", Output: "root:tag"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top