Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for located (0.07 sec)

  1. docs/en/docs/contributing.md

    In the case of Spanish, the 2-letter code is `es`. So, the directory for Spanish translations is located at `docs/es/`.
    
    /// tip
    
    The main ("official") language is English, located at `docs/en/`.
    
    ///
    
    Now run the live server for the docs in Spanish:
    
    <div class="termy">
    
    ```console
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 25 02:44:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                if (providedArtifacts.contains(id)) {
                    log.debug("  Excluded {}", id);
                } else {
                    File file = artifact.getFile();
                    log.debug("  Included {} located at {}", id, file);
                    realm.addURL(file.toURI().toURL());
                }
            }
            return CoreExtensionEntry.discoverFrom(
                    realm,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

                            + "The property can be passed as a Maven argument or in the Maven project configuration file,"
                            + "usually located at ${session.rootDirectory}/.mvn/maven.properties.");
                }
            }
            ArrayList<Path> jars = new ArrayList<>();
            if (extClassPath != null && !extClassPath.isEmpty()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. scripts/docs.py

            )
            raise typer.Abort()
        typer.echo("Valid README ✅")
    
    
    @app.command()
    def build_all() -> None:
        """
        Build mkdocs site for en, and then build each language inside, end result is located
        at directory ./site/ with each language inside.
        """
        update_languages()
        shutil.rmtree(site_path, ignore_errors=True)
        langs = [lang.name for lang in get_lang_paths() if lang.is_dir()]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/behind-a-proxy.md

    /// tip
    
    The IP `0.0.0.0` is commonly used to mean that the program listens on all the IPs available in that machine/server.
    
    ///
    
    The docs UI would also need the OpenAPI schema to declare that this API `server` is located at `/api/v1` (behind the proxy). For example:
    
    ```JSON hl_lines="4-8"
    {
        "openapi": "3.1.0",
        // More stuff here
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 16:49:49 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

     * DFS referrals. (E.g. a resource with a DFS root's parent will still point to the DFS root not the share it's actually
     * located in).
     * - share + uncpath within it: This is the relevant information for most SMB requests. Both are adjusted by DFS
     * referrals. Nested resources will inherit the information already resolved by the parent resource.
     * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                            + "The property can be passed as a Maven argument or in the Maven project configuration file,"
                            + "usually located at ${session.rootDirectory}/.mvn/maven.properties.");
                }
            }
            if (userDefinedLocalRepo != null) {
                return context.cwdResolver.apply(userDefinedLocalRepo);
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  8. cmd/metacache-set.go

    	StopDiskAtLimit bool
    
    	// pool and set of where the cache is located.
    	pool, set int
    }
    
    func init() {
    	gob.Register(listPathOptions{})
    }
    
    func (o *listPathOptions) setBucketMeta(ctx context.Context) {
    	lc, _ := globalLifecycleSys.Get(o.Bucket)
    	vc, _ := globalBucketVersioningSys.Get(o.Bucket)
    
    	// Check if bucket is object locked.
    	rcfg, _ := globalBucketObjectLockSys.Get(o.Bucket)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 16:23:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/MoreFiles.java

          }
    
          @Override
          public String toString() {
            return "MoreFiles.isRegularFile(" + Arrays.toString(optionsCopy) + ")";
          }
        };
      }
    
      /**
       * Returns true if the files located by the given paths exist, are not directories, and contain
       * the same bytes.
       *
       * @throws IOException if an I/O error occurs
       * @since 22.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/MoreFiles.java

          }
    
          @Override
          public String toString() {
            return "MoreFiles.isRegularFile(" + Arrays.toString(optionsCopy) + ")";
          }
        };
      }
    
      /**
       * Returns true if the files located by the given paths exist, are not directories, and contain
       * the same bytes.
       *
       * @throws IOException if an I/O error occurs
       * @since 22.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top