Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for prlimit (0.16 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// be module versions; we skip over those to look for module
    	// versions. For example the module m/v2 might have a
    	// package m/v2/api/v1/foo.
    	limit := len(path)
    	for limit > 0 {
    		i, j := findVersionElement(path[:limit])
    		if i < 0 {
    			return path
    		}
    		if bp, _ := cfg.BuildContext.Import(path[:i], "", build.IgnoreVendor); bp.Dir != "" {
    			if mpath := goModPath(bp.Dir); mpath != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              - name: enable-core-dump
                args:
                - -c
                - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
                command:
                  - /bin/sh
              {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			{
    				ID:   testContainerID,
    				Name: testContainerName,
    				Resources: &kubecontainer.ContainerResources{
    					CPURequest:    CPU1AndMem1G.Cpu(),
    					MemoryRequest: CPU1AndMem1G.Memory(),
    					CPULimit:      CPU1AndMem1G.Cpu(),
    					MemoryLimit:   CPU1AndMem1G.Memory(),
    				},
    			},
    		},
    	}
    
    	tests := []struct {
    		name      string
    		pod       *v1.Pod
    		oldStatus *v1.PodStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    		podStats = newPodMemoryStats(pod, *resource.NewQuantity(requests.Memory().Value()*2, resource.BinarySI))
    	case "container-ephemeral-storage-limit":
    		podStats = newPodMemoryStats(pod, *resource.NewQuantity(limits.StorageEphemeral().Value(), resource.BinarySI))
    	case "pod-ephemeral-storage-limit":
    		podStats = newPodMemoryStats(pod, *resource.NewQuantity(limits.StorageEphemeral().Value()*2, resource.BinarySI))
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
     * URL escape character itself.
     * <p>
     * The server
     * component may a traditional NetBIOS name, a DNS name, or IP
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// created in C.
    	//
    	// The purpose of the SetMaxThreads limit is to avoid accidental fork
    	// bomb from something like millions of goroutines blocking on system
    	// calls, causing the runtime to create millions of threads. By
    	// definition, this isn't a problem for threads created in C, so we
    	// exclude them from the limit. See https://go.dev/issue/60004.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        return 0
      fi
    
      SUBNETWORK=$(gcloud compute networks subnets list \
        --network="${NETWORK}" \
        --regions="${REGION}" \
        --project="${NETWORK_PROJECT}" \
        --limit=1 \
        --format='value(name)' 2>/dev/null)
    
      if [[ -n ${SUBNETWORK:-} ]]; then
        echo "Found subnet for region ${REGION} in network ${NETWORK}: ${SUBNETWORK}"
        return 0
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.global.variant)}}-{{.}}{end}}" {{- end }} {{- if .Values.global.imagePullPolicy }} imagePullPolicy: {{ .Values.global.imagePullPolicy }} {{- end }} command: - /bin/sh args: - -c - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited securityContext: runAsUser: 0 runAsGroup: 0 runAsNonRoot: false privileged: true {{- end }} containers: - name: istio-proxy {{- if contains "/" .Values.global.proxy.image }} image: "{{ .Values.global.proxy.image }}" {{- else }} image:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top