Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 303 for Angular (0.04 seconds)

  1. docs/en/docs/css/custom.css

    /* Override default code font in Material for MkDocs to Fira Code */
    :root {
        --md-code-font: "Fira Code", monospace, "Noto Color Emoji";
    }
    
    /* Override default regular font in Material for MkDocs to include Noto Color Emoji */
    :root {
        --md-text-font: "Roboto", "Noto Color Emoji";
    }
    
    .termynal-comment {
      color: #4a968f;
      font-style: italic;
      display: block;
    }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 28 15:55:15 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb1/netbios/Lmhosts.java

         * This is really just for {@link jcifs.smb1.UniAddress}. It does
         * not throw an {@link java.net.UnknownHostException} because this
         * is queried frequently and exceptions would be rather costly to
         * throw on a regular basis here.
         *
         * @param host the hostname to resolve
         * @return the resolved NbtAddress or null if not found
         */
    
        public synchronized static NbtAddress getByName(final String host) {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6K bytes
    - Click Count (0)
  3. impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingExceptionTest.java

            String message = exception.getMessage();
    
            assertTrue(
                    message.contains("1 problem was encountered while processing the POMs"),
                    "Message should use singular form for single problem");
    
            assertTrue(
                    message.contains("[WARNING] Deprecated feature used"),
                    "Message should contain warning when no errors are present");
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Jul 26 19:15:57 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  4. docs/pt/docs/advanced/dataclasses.md

        Novamente, você pode combinar `dataclasses` com anotações de tipo padrão.
    
    8. Note que esta *função de operação de rota* usa `def` regular em vez de `async def`.
    
        Como sempre, no FastAPI você pode combinar `def` e `async def` conforme necessário.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  5. docs/es/docs/advanced/dataclasses.md

        Nuevamente, puedes combinar `dataclasses` con anotaciones de tipos estándar.
    
    8. Nota que esta *path operation function* usa `def` regular en lugar de `async def`.
    
        Como siempre, en FastAPI puedes combinar `def` y `async def` según sea necesario.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  6. cmd/callhome.go

    		// lock timedout means some other node is the leader,
    		// cycle back return 'true'
    		return true
    	}
    
    	ctx = lkctx.Context()
    	defer locker.Unlock(lkctx)
    
    	// Perform callhome once and then keep running it at regular intervals.
    	performCallhome(ctx)
    
    	callhomeTimer := time.NewTimer(globalCallhomeConfig.FrequencyDur())
    	defer callhomeTimer.Stop()
    
    	for {
    		if !globalCallhomeConfig.Enabled() {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/SortedSetTestSuiteBuilder.java

       * Creates a suite whose set has some elements filtered out of view.
       *
       * <p>Because the set may be ascending or descending, this test must derive the relative order of
       * these extreme values rather than relying on their regular sort ordering.
       */
      final TestSuite createSubsetSuite(
          FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<Collection<E>, E>>
              parentBuilder,
          Bound from,
          Bound to) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 30 16:15:19 GMT 2024
    - 4.9K bytes
    - Click Count (0)
  8. docs/extensions/s3zip/README.md

    Ensure to set the following header `x-minio-extract` to `true` in your S3 requests.
    
    ## How to access to files inside a ZIP archive
    
    Accessing to contents inside an archive can be done using regular S3 API with a modified request path. You just need to append the path of the content inside the archive to the path of the archive itself.
    
    e.g.:
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 10 16:28:27 GMT 2024
    - 3K bytes
    - Click Count (0)
  9. src/test/java/jcifs/util/SmbCircuitBreakerTest.java

                for (int i = 0; i < 3; i++) {
                    final int index = i;
                    try {
                        customCb.executeWithCircuitBreaker(() -> {
                            throw new RuntimeException("regular error " + index);
                        });
                        fail("Should have thrown exception");
                    } catch (CIFSException e) {
                        // Expected
                    }
                }
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  10. src/main/webapp/css/font-awesome.min.css

    Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(./fonts/fa-regular-400.eot);src:url(./fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(./fonts/fa-regular-400.woff2) format("woff2"),url(./fonts/fa-regular-400.woff) format("woff"),url(./fonts/fa-regular-400.ttf) format("truetype"),url(./fonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;f...
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Click Count (2)
Back to Top