Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for gids (0.45 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    == Configuring the JVM to be used
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/image/gif/writer_test.go

    				i, m.Bounds(), width, height)
    		}
    		g0.Image[i] = m
    	}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 or earlier code should still produce valid GIFs.
    	//
    	// On the following line, color.Model is an interface type, and
    	// color.Palette is a concrete (slice) type.
    	globalColorModel, backgroundIndex := color.Model(color.Palette(nil)), uint8(0)
    	if useGlobalColorModel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Compilation speed increase - Reducing the number of transitive dependencies leaked from a project aids the compiler process of its consumers as there are fewer libraries to classload and fewer namespaces for Gradle's incremental compiler to track.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/kubelet/util/manager/cache_based_manager_test.go

    	assert.Equal(t, 0, refs("ns1", "s60"))
    	assert.Equal(t, 1, refs("ns1", "s7"))
    	assert.Equal(t, 1, refs("ns1", "s70"))
    
    	// Check the interleaved registerpod/unregisterpod with identical names and different uids scenario
    	secret1 := secretsToAttach{
    		containerEnvSecrets: []envSecrets{
    			{envVarNames: []string{"secret1"}},
    		},
    	}
    	secret2 := secretsToAttach{
    		containerEnvSecrets: []envSecrets{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. docs/yo/docs/index.md

        * Ṣàyẹ̀wò pé ó ní àbùdá àṣàyàn `is_offer`, tí ó yẹ kí ó jẹ́ `bool`, tí ó bá wà níbẹ̀.
        * Gbogbo èyí yóò tún ṣiṣẹ́ fún àwọn ohun èlò JSON tí ó jìn gidi gan-an.
    * Yìí padà láti àti sí JSON lai fi ọwọ́ yi.
    * Ṣe àkọsílẹ̀ ohun gbogbo pẹ̀lú OpenAPI, èyí tí yóò wà ní lílo nípaṣẹ̀:
        * Àwọn ètò àkọsílẹ̀ ìbáṣepọ̀.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    	MountsInGlobalPDPath = "mounts"
    
    	// VolumeGidAnnotationKey is the of the annotation on the PersistentVolume
    	// object that specifies a supplemental GID.
    	VolumeGidAnnotationKey = "pv.beta.kubernetes.io/gid"
    
    	// VolumeDynamicallyCreatedByKey is the key of the annotation on PersistentVolume
    	// object created dynamically
    	VolumeDynamicallyCreatedByKey = "kubernetes.io/createdby"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    		wantPodStatus v1.PodStatus
    	}{
    		"eviction due to pid pressure": {
    			wantPodStatus: v1.PodStatus{
    				Phase:   v1.PodFailed,
    				Reason:  "Evicted",
    				Message: "The node was low on resource: pids. Threshold quantity: 1200, available: 500. ",
    			},
    		},
    	}
    	for name, tc := range testCases {
    		for _, enablePodDisruptionConditions := range []bool{true, false} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    	fs.Int64Var(&c.PodPidsLimit, "pod-max-pids", c.PodPidsLimit, "Set the maximum number of processes per pod.  If -1, the kubelet defaults to the node allocatable pid capacity.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	for k, v := range m {
    		switch v1.ResourceName(k) {
    		// CPU, memory, local storage, and PID resources are supported.
    		case v1.ResourceCPU, v1.ResourceMemory, v1.ResourceEphemeralStorage, pidlimit.PIDs:
    			q, err := resource.ParseQuantity(v)
    			if err != nil {
    				return nil, fmt.Errorf("failed to parse quantity %q for %q resource: %w", v, k, err)
    			}
    			if q.Sign() == -1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    //
    // If the file initially has one uncommented block of requirements,
    // SetRequireSeparateIndirect will split it into a direct-only and indirect-only
    // block. This aids in the transition to separate blocks.
    func (f *File) SetRequireSeparateIndirect(req []*Require) {
    	// hasComments returns whether a line or block has comments
    	// other than "indirect".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top