Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for groups (0.46 sec)

  1. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "mediumJavaMultiProject",
          "coverage" : {
            "per_week" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumMonolithicJavaProject",
          "coverage" : {
            "per_week" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.maven.JavaTestGradleVsMavenPerformanceTest.clean test (Gradle vs Maven)",
        "groups" : [ {
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 09:01:23 GMT 2024
    - 35.5K bytes
    - Viewed (0)
  2. docker/Dockerfile.distroless

    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    COPY --from=ubuntu_source /home/etc/passwd /etc/passwd
    COPY --from=ubuntu_source /home/etc/group /etc/group
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 18:50:51 GMT 2024
    - 836 bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            return new ModelData(modelSource, rawModel);
        }
    
        static String getGroupId(Model model) {
            String groupId = model.getGroupId();
            if (groupId == null && model.getParent() != null) {
                groupId = model.getParent().getGroupId();
            }
            return groupId;
        }
    
        private String getVersion(Model model) {
            String version = model.getVersion();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  4. cmd/handler-api.go

    	gzipObjects                 bool
    	rootAccess                  bool
    	syncEvents                  bool
    	objectMaxVersions           int64
    }
    
    const (
    	cgroupV1MemLimitFile = "/sys/fs/cgroup/memory/memory.limit_in_bytes"
    	cgroupV2MemLimitFile = "/sys/fs/cgroup/memory.max"
    	cgroupMemNoLimit     = 9223372036854771712
    )
    
    func cgroupMemLimit() (limit uint64) {
    	buf, err := os.ReadFile(cgroupV2MemLimitFile)
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    	var mu sync.Mutex
    	wg.Add(len(objSetMap))
    	for setIdx, objsGroup := range objSetMap {
    		go func(set *erasureObjects, group []delObj) {
    			defer wg.Done()
    			dobjects, errs := set.DeleteObjects(ctx, bucket, toNames(group), opts)
    			mu.Lock()
    			defer mu.Unlock()
    			for i, obj := range group {
    				delErrs[obj.origIndex] = errs[i]
    				delObjects[obj.origIndex] = dobjects[i]
    			}
    		}(s.sets[setIdx], objsGroup)
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
  6. cmd/api-errors.go

    		Description:    "The specified group does not exist.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrAdminNoSuchJob: {
    		Code:           "XMinioAdminNoSuchJob",
    		Description:    "The specified job does not exist.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrAdminGroupNotEmpty: {
    		Code:           "XMinioAdminGroupNotEmpty",
    		Description:    "The specified group is not empty - cannot remove it.",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  7. istioctl/pkg/waypoint/waypoint.go

    	waypointCmd := &cobra.Command{
    		Use:   "waypoint",
    		Short: "Manage waypoint configuration",
    		Long:  "A group of commands used to manage waypoint configuration",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl x waypoint apply
    
      # Generate a waypoint as yaml
      istioctl x waypoint generate --namespace default
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 19:45:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * 👷 Add changes-requested handling in GitHub Action issue manager. PR [#10971](https://github.com/tiangolo/fastapi/pull/10971) by [@tiangolo](https://github.com/tiangolo).
    * 🔧  Group dependencies on dependabot updates. PR [#10952](https://github.com/tiangolo/fastapi/pull/10952) by [@Kludex](https://github.com/Kludex).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top