Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 443 for parent_ (0.05 sec)

  1. helm/minio/README.md

    - `svcaccts[].existingSecret` - secret name that contains the secretKey of service account
    - `svcaccts[].existingSecretKey` - data key in existingSecret secret containing the secretKey
    - `svcaccts[].user` - name of the parent user to assign to service account
    
    ## Uninstalling the Chart
    
    Assuming your release is named as `my-release`, delete it using the command:
    
    ```bash
    helm delete my-release
    ```
    
    or
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public MojoDescriptor getMojo(String goal) {
            if (getMojos() == null) {
                return null; // no mojo in this POM
            }
    
            // TODO could we use a map? Maybe if the parent did that for components too, as this is too vulnerable to
            // changes above not being propagated to the map
            for (MojoDescriptor desc : getMojos()) {
                if (goal.equals(desc.getGoal())) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. docs/de/docs/deployment/server-workers.md

    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 8080 --workers 4
    <font color="#A6E22E">INFO</font>:     Uvicorn running on <b>http://0.0.0.0:8080</b> (Press CTRL+C to quit)
    <font color="#A6E22E">INFO</font>:     Started parent process [<font color="#A1EFE4"><b>27365</b></font>]
    <font color="#A6E22E">INFO</font>:     Started server process [<font color="#A1EFE4">27368</font>]
    <font color="#A6E22E">INFO</font>:     Waiting for application startup.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. cmd/ftp-server-driver.go

    				claims[ldapAttribPrefix+attribKey] = attribValue
    			}
    
    			cred, err := auth.GetNewCredentialsWithMetadata(claims, globalActiveCred.SecretKey)
    			if err != nil {
    				return nil, err
    			}
    
    			// Set the parent of the temporary access key, this is useful
    			// in obtaining service accounts by this cred.
    			cred.ParentUser = lookupResult.NormDN
    
    			// Set this value to LDAP groups, LDAP user can be part
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 14 17:11:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                RenderDataUtil.register(data, "path", path);
                RenderDataUtil.register(data, "pathItems", createPathItems(path));
                RenderDataUtil.register(data, "parentId", createParentId(path));
                RenderDataUtil.register(data, "fileItems", getFileItems(path));
            });
        }
    
        private HtmlResponse asEditTagsHtml(final String path, final String name) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. docs/zh/docs/deployment/server-workers.md

    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 8080 --workers 4
    <font color="#A6E22E">INFO</font>:     Uvicorn running on <b>http://0.0.0.0:8080</b> (Press CTRL+C to quit)
    <font color="#A6E22E">INFO</font>:     Started parent process [<font color="#A1EFE4"><b>27365</b></font>]
    <font color="#A6E22E">INFO</font>:     Started server process [<font color="#A1EFE4">27368</font>]
    <font color="#A6E22E">INFO</font>:     Waiting for application startup.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. scripts/docs.py

        # Language names sourced from https://quickref.me/iso-639-1
        # Contributors may wish to update or change these, e.g. to fix capitalization.
        language_names_path = Path(__file__).parent / "../docs/language_names.yml"
        local_language_names: Dict[str, str] = mkdocs.utils.yaml_load(
            language_names_path.read_text(encoding="utf-8")
        )
        for lang_path in get_lang_paths():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(1, indexingHelper.deleteChildDocument(client, id));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(id, resultMap.get("id"));
            assertEquals("parent_id", resultMap.get("field"));
        }
    
        public void test_getChildDocumentList() {
            documentSizeByQuery = 1L;
            final Map<String, String> resultMap = new HashMap<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 08:54:24 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         *
         * @since 4.0.0
         */
        MavenExecutionRequest setRootDirectory(Path rootDirectory);
    
        /**
         * Gets the root directory of the top project, which is the parent directory containing the {@code .mvn}
         * directory or a {@code pom.xml} file with the {@code root="true"} attribute.
         * If there's no such directory, an {@code IllegalStateException} will be thrown.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users_test.go

    	c.mustListObjects(ctx, svcClient, bucket)
    }
    
    func (c *check) assertSvcAccAppearsInListing(ctx context.Context, madmClient *madmin.AdminClient, parentAK, svcAK string) {
    	c.Helper()
    	listResp, err := madmClient.ListServiceAccounts(ctx, parentAK)
    	if err != nil {
    		c.Fatalf("unable to list svc accounts: %v", err)
    	}
    	var accessKeys []string
    	for _, item := range listResp.Accounts {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top