Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 684 for probes (0.14 sec)

  1. src/test/java/jcifs/tests/KerberosTest.java

            }
            catch ( SmbException e ) {
                if ( ! ( e.getCause() instanceof GSSException ) ) {
                    throw e;
                }
                log.error("Kerberos problem", e);
                Assume.assumeTrue("Kerberos problem, clockskew?", false);
            }
        }
    
    
        public static Subject getInitiatorSubject ( KeyTab keytab, final KerberosPrincipal principal ) throws Asn1Exception, KrbException, IOException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  2. compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            Properties props = new Properties();
            props.put("key", "user_value");
            ToolchainModel toolchain = new ToolchainModel();
            toolchain.setType("TYPE");
            toolchain.setProvides(props);
            PersistedToolchains userResult = new PersistedToolchains();
            userResult.setToolchains(Collections.singletonList(toolchain));
    
            props = new Properties();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A result of collecting, flattening and resolving {@link DependencyCoordinates}s.
     * Dependency is the output of the <dfn>collection</dfn> process, which builds the graph of dependencies,
     * followed by <dfn>flattening</dfn> and <dfn>resolution</dfn>.
     * The version selection is done for each dependency during the collection phase.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/middleware.md

    **FastAPI** ๐Ÿšš โšซ๏ธ ๐Ÿช ๐Ÿ‘†, ๐Ÿ‘ฉโ€๐Ÿ’ป. โœ‹๏ธ โšซ๏ธ ๐Ÿ‘Ÿ ๐Ÿ”— โšช๏ธโžก๏ธ ๐Ÿ’ƒ.
    
    ///
    
    ### โญ &amp; โฎ๏ธ `response`
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšฎ ๐Ÿ“Ÿ ๐Ÿƒ โฎ๏ธ `request`, โญ ๐Ÿ™† *โžก ๐Ÿ› ๏ธ* ๐Ÿ“จ โšซ๏ธ.
    
    &amp; โฎ๏ธ `response` ๐Ÿ—, โญ ๐Ÿ›ฌ โšซ๏ธ.
    
    ๐Ÿ–ผ, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšฎ ๐Ÿ›ƒ ๐ŸŽš `X-Process-Time` โš— ๐Ÿ•ฐ ๐Ÿฅˆ ๐Ÿ‘ˆ โšซ๏ธ โœŠ ๐Ÿ› ๏ธ ๐Ÿ“จ &amp; ๐Ÿ— ๐Ÿ“จ:
    
    ```Python hl_lines="10  12-13"
    {!../../docs_src/middleware/tutorial001.py!}
    ```
    
    ## ๐ŸŽ ๐Ÿ› ๏ธ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

                            return builder.setScript(script);
                        }
                    } catch (final Exception e) {
                        logger.warn("Failed to process {}", hit, e);
                    }
                    return null;
                });
                resultBuf.append(count).append(" docs").append("\n");
            } catch (final Exception e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. docs/ko/docs/python-types.md

    ์ฒซ ๋ฒˆ์งธ ๋งค๊ฐœ๋ณ€์ˆ˜๋Š” `dict`์˜ ํ‚ค(key)์ด๊ณ ,
    
    ๋‘ ๋ฒˆ์งธ ๋งค๊ฐœ๋ณ€์ˆ˜๋Š”  `dict`์˜ ๊ฐ’(value)์ž…๋‹ˆ๋‹ค.
    
    ```Python hl_lines="1  4"
    {!../../docs_src/python_types/tutorial008.py!}
    ```
    
    ์ด ๋œป์€ ์•„๋ž˜์™€ ๊ฐ™์Šต๋‹ˆ๋‹ค:
    
    * ๋ณ€์ˆ˜ `prices`๋Š” `dict`์ด๋‹ค:
        * `dict`์˜ ํ‚ค(key)๋Š” `str`ํƒ€์ž…์ด๋‹ค. (๊ฐ ์•„์ดํ…œ์˜ ์ด๋ฆ„(name))
        * `dict`์˜ ๊ฐ’(value)๋Š” `float`ํƒ€์ž…์ด๋‹ค. (๊ฐ ์•„์ดํ…œ์˜ ๊ฐ€๊ฒฉ(price))
    
    #### `Optional`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                final Class<?> implType = getClassForImplementationHint(type, configuration, loader);
                if (null == value && implType.isInterface() && configuration.getChildCount() == 0) {
                    return null; // nothing to process
                }
                final Object bean = instantiateObject(implType);
                if (null == value) {
                    processConfiguration(lookup, bean, loader, configuration, evaluator, listener);
                } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    fail for reasons that are irrelevant when using external linking mode.
    
    The final program will be a dynamic executable, so that cmd/link can avoid
    needing to process arbitrary .o files. It only needs to process the .o
    files generated from C files that cgo writes, and those are much more
    limited in the ELF or other features that they use.
    
    In essence, the _cgo_import.o file includes the extra linking
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 01 22:52:54 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/path-params-numeric-validations.md

    Bevorzugen Sie die `Annotated`-Version, falls mรถglich.
    
    ///
    
    ```Python hl_lines="7"
    {!> ../../docs_src/path_params_numeric_validations/tutorial002.py!}
    ```
    
    ////
    
    Aber bedenken Sie, dass Sie dieses Problem nicht haben, wenn Sie `Annotated` verwenden, da Sie nicht die Funktions-Parameter-Defaultwerte fรผr `Query()` oder `Path()` verwenden.
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="10"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

            testing/architecture-test/build/reports/binary-compatibility/report.html => binary-compatibility-reports
            build/reports/dependency-verification/** => dependency-verification-reports
            build/reports/problems/problems-report.html
        """.trimIndent()
    
        paramsForBuildToolBuild(buildJvm, os, arch)
        params {
            // The promotion job doesn't have a branch, so %teamcity.build.branch% doesn't work.
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 10 03:25:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top