Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1941 - 1950 of 2,056 for App (0.08 sec)

  1. src/main/assemblies/files/service.bat

    rem thread stack size
    set JVM_SS=256
    
    set FESS_PARAMS=-Dfess;-Dfess.home="%FESS_HOME%";-Dfess.es.dir="%SEARCH_ENGINE_HOME%";-Dfess.home="%FESS_HOME%";-Dfess.context.path="/";-Dfess.port=8080;-Dfess.webapp.path="%FESS_HOME%\app";-Dfess.temp.path="%FESS_HOME%\temp";-Dfess.log.name="%APP_NAME%";-Dfess.log.path="%FESS_HOME%\logs";-Dfess.log.level=warn;-Dlasta.env=web;-Dtomcat.config.path=tomcat_config.properties
    
    set JVM_OPTS=-XX:+UseG1GC%FESS_JAVA_OPTS: =;%
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. docs/sts/tls.md

    ## Caveat
    
    *Applications that use direct S3 API will work fine, however interactive users uploading content using (when POSTing to the presigned URL an app generates) a popup becomes visible on browser to provide client certs, you would have to manually cancel and continue. This may be annoying to use but there is no workaround for now.*
    
    ## Explore Further
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (1)
  3. tests/test_application.py

    import pytest
    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    
    from .main import app
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  4. docs/em/docs/async.md

    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    /// note
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ•ด โš™๏ธ `await` ๐Ÿ”˜ ๐Ÿ”ข โœ โฎ๏ธ `async def`.
    
    ///
    
    ---
    
    ๐Ÿšฅ ๐Ÿ‘† โš™๏ธ ๐Ÿฅ‰ ๐Ÿฅณ ๐Ÿ—ƒ ๐Ÿ‘ˆ ๐Ÿ”— โฎ๏ธ ๐Ÿ•ณ (๐Ÿ’ฝ, ๐Ÿ› ๏ธ, ๐Ÿ“ โš™๏ธ, โ™’๏ธ.) & ๐Ÿšซ โœ”๏ธ ๐Ÿ•โ€๐Ÿฆบ โš™๏ธ `await`, (๐Ÿ‘‰ โณ ๐Ÿ’ผ ๐ŸŒ… ๐Ÿ’ฝ ๐Ÿ—ƒ), โคด๏ธ ๐Ÿ“ฃ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ”ข* ๐Ÿ›Ž, โฎ๏ธ `def`, ๐Ÿ’–:
    
    ```Python hl_lines="2"
    @app.get('/')
    def results():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. istioctl/pkg/analyze/analyze.go

      # Analyze the current live cluster, simulating the effect of applying additional yaml files
      istioctl analyze a.yaml b.yaml my-app-config/
    
      # Analyze yaml files without connecting to a live cluster
      istioctl analyze --use-kube=false a.yaml b.yaml my-app-config/
    
      # Analyze the current live cluster and suppress PodMissingProxy for pod mypod in namespace 'testing'.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 31 06:53:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.service.FailureUrlService;
    import org.codelibs.fess.ds.DataStore;
    import org.codelibs.fess.ds.DataStoreFactory;
    import org.codelibs.fess.ds.callback.IndexUpdateCallback;
    import org.codelibs.fess.entity.DataStoreParams;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    	c.mustNotCreateSvcAccount(ctx, globalActiveCred.AccessKey, userAdmClient)
    }
    
    var testAppParams = OpenIDClientAppParams{
    	ClientID:     "minio-client-app",
    	ClientSecret: "minio-client-app-secret",
    	ProviderURL:  "http://127.0.0.1:5556/dex",
    	RedirectURL:  "http://127.0.0.1:10000/oauth_callback",
    }
    
    const (
    	EnvTestOpenIDServer  = "_MINIO_OPENID_TEST_SERVER"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 23:40:37 UTC 2024
    - 97.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: others might be updated, so retry. */
        public static final String ERRORS_APP_DB_ALREADY_DELETED = "{errors.app.db.already.deleted}";
    
        /** The key of the message: others might be updated, so retry. */
        public static final String ERRORS_APP_DB_ALREADY_UPDATED = "{errors.app.db.already.updated}";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/middleware.md

    * ใใ—ใฆใ€**ใƒฌใ‚นใƒใƒณใ‚น**ใ‚’่ฟ”ใ—ใพใ™ใ€‚
    
    /// note | "ๆŠ€่ก“่ฉณ็ดฐ"
    
    `yield` ใ‚’ไฝฟใฃใŸไพๅญ˜้–ขไฟ‚ใ‚’ใ‚‚ใคๅ ดๅˆใฏใ€็ต‚ไบ†ใ‚ณใƒผใƒ‰ใฏใƒŸใƒ‰ใƒซใ‚ฆใ‚งใ‚ขใฎ *ๅพŒใซ* ๅฎŸ่กŒใ•ใ‚Œใพใ™ใ€‚
    
    ใƒใƒƒใ‚ฏใ‚ฐใƒฉใ‚ฆใƒณใƒ‰ใ‚ฟใ‚นใ‚ฏ (ๅพŒ่ฟฐ) ใŒใ‚ใ‚‹ๅ ดๅˆใฏใ€ใใ‚Œใ‚‰ใฏๅ…จใฆใฎใƒŸใƒ‰ใƒซใ‚ฆใ‚งใ‚ขใฎ *ๅพŒใซ* ๅฎŸ่กŒใ•ใ‚Œใพใ™ใ€‚
    
    ///
    
    ## ใƒŸใƒ‰ใƒซใ‚ฆใ‚งใ‚ขใฎไฝœๆˆ
    
    ใƒŸใƒ‰ใƒซใ‚ฆใ‚งใ‚ขใ‚’ไฝœๆˆใ™ใ‚‹ใซใฏใ€้–ขๆ•ฐใฎไธŠ้ƒจใงใƒ‡ใ‚ณใƒฌใƒผใ‚ฟ `@app.middleware("http")` ใ‚’ไฝฟ็”จใ—ใพใ™ใ€‚
    
    ใƒŸใƒ‰ใƒซใ‚ฆใ‚งใ‚ข้–ขๆ•ฐใฏไปฅไธ‹ใ‚’ๅ—ใ‘ๅ–ใ‚Šใพใ™:
    
    * `request`ใ€‚
    * ใƒ‘ใƒฉใƒกใƒผใ‚ฟใจใ—ใฆ `request` ใ‚’ๅ—ใ‘ๅ–ใ‚‹้–ขๆ•ฐ `call_next`ใ€‚
        * ใ“ใฎ้–ขๆ•ฐใฏใ€ๅฏพๅฟœใ™ใ‚‹*path operation*ใซ `request` ใ‚’ๆธกใ—ใพใ™ใ€‚
        * ๆฌกใซใ€ๅฏพๅฟœใ™ใ‚‹*path operation*ใซใ‚ˆใฃใฆ็”Ÿๆˆใ•ใ‚ŒใŸ `response` ใ‚’่ฟ”ใ—ใพใ™ใ€‚
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. istioctl/pkg/metrics/metrics_test.go

    	}
    	client.Kube().CoreV1().Pods("istio-system").Create(context.TODO(), &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "prometheus",
    			Namespace: "istio-system",
    			Labels: map[string]string{
    				"app.kubernetes.io/name": "prometheus",
    			},
    		},
    	}, metav1.CreateOptions{})
    	metricCmd := Cmd(ctx)
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %s", i, strings.Join(c.Args, " ")), func(t *testing.T) {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 16 01:35:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top