Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 908 for resource1 (0.05 sec)

  1. helm-releases/minio-3.1.2.tgz

    persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonl...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 18 04:26:47 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  2. helm-releases/minio-3.1.4.tgz

    persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonl...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 20 05:30:22 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  3. helm-releases/minio-3.1.5.tgz

    persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonl...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 22 16:52:01 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  4. compat/maven-model/src/test/java/org/apache/maven/model/ResourceTest.java

    1. import static org.junit.jupiter.api.Assertions.assertTrue;
    2.  
    3. /**
    4. * Tests {@code Resource}.
    5. *
    6. */
    7. class ResourceTest {
    8.  
    9. @Test
    10. void testHashCodeNullSafe() {
    11. new Resource().hashCode();
    12. }
    13.  
    14. @Test
    15. void testEqualsNullSafe() {
    16. assertFalse(new Resource().equals(null));
    17.  
    18. new Resource().equals(new Resource());
    19. }
    20.  
    21. @Test
    22. void testEqualsIdentity() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. impl/maven-core/lifecycle-executor.txt

    1. <configuration>
    2. <lifecycles>
    3. <lifecycle>
    4. <id>default</id>
    5. <phases>
    6. <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
    7. <compile>org.apache.maven.plugins:maven-compiler-plugin:compile</compile>
    8. <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
    9. <test-compile>org.apache.maven.plugins:maven-compiler-plugin:testCompile</test-compile>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. javadoc-stylesheet.css

    1. color:#bb7a2a;
    2. }
    3. .tab {
    4. background-color:#0066FF;
    5. background-image:url(resources/titlebar.gif);
    6. background-position:left top;
    7. background-repeat:no-repeat;
    8. color:#ffffff;
    9. padding:8px;
    10. width:5em;
    11. font-weight:bold;
    12. }
    13. /*
    14. Navigation bar styles
    15. */
    16. .bar {
    17. background-image:url(resources/background.gif);
    18. background-repeat:repeat-x;
    19. color:#FFFFFF;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/node/v1/generated.proto

    1. import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    2. import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    3. import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    4. import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    5.  
    6. // Package-wide variables from generator "generated".
    7. option go_package = "k8s.io/api/node/v1";
    8.  
    9. // Overhead structure represents the resource overhead associated with running a pod.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/GroupService.java

    1. import org.dbflute.cbean.result.PagingResultBean;
    2. import org.dbflute.optional.OptionalEntity;
    3.  
    4. import jakarta.annotation.Resource;
    5.  
    6. public class GroupService {
    7.  
    8. @Resource
    9. protected GroupBhv groupBhv;
    10.  
    11. @Resource
    12. protected FessConfig fessConfig;
    13.  
    14. @Resource
    15. protected UserBhv userBhv;
    16.  
    17. public List<Group> getGroupList(final GroupPager groupPager) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RoleService.java

    1. import org.dbflute.cbean.result.PagingResultBean;
    2. import org.dbflute.optional.OptionalEntity;
    3.  
    4. import jakarta.annotation.Resource;
    5.  
    6. public class RoleService {
    7.  
    8. @Resource
    9. protected RoleBhv roleBhv;
    10.  
    11. @Resource
    12. protected FessConfig fessConfig;
    13.  
    14. @Resource
    15. protected UserBhv userBhv;
    16.  
    17. public List<Role> getRoleList(final RolePager rolePager) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. index.yaml

    1. created: "2024-10-11T14:15:09.790426575+02:00"
    2. description: High Performance Object Storage
    3. digest: 5f927286767c285b925a3395e75b4f372367f83d2124395185e21dc7fd4ca177
    4. home: https://min.io
    5. icon: https://min.io/resources/img/logo/MINIO_wordmark.png
    6. keywords:
    7. - minio
    8. - storage
    9. - object-storage
    10. - s3
    11. - cluster
    12. maintainers:
    13. - email: ******@****.***
    14. name: MinIO, Inc
    15. name: minio
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 11 12:21:05 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top