Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for gids (0.04 sec)

  1. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        this(capacity, fair);
        if (capacity < c.size()) throw new IllegalArgumentException();
    
        for (E e : c) add(e);
      }
    
      @SuppressWarnings("unchecked") // please don't try this home, kids
      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    	c, m := rangesContainsAll(parentRanges, calleeRanges)
    	if !c {
    		base.Fatalf("** malformed inlined routine range in %s: caller %s callee %s II=%d %s\n", funcName, caller, callee, idx, m)
    	}
    
    	// Now visit kids
    	for _, k := range ic.Children {
    		checkInlCall(funcName, inlCalls, funcSize, k, idx)
    	}
    }
    
    // unifyCallRanges ensures that the ranges for a given inline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K 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. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        this(capacity, fair);
        if (capacity < c.size()) throw new IllegalArgumentException();
    
        for (E e : c) add(e);
      }
    
      @SuppressWarnings("unchecked") // please don't try this home, kids
      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. 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)
  6. pkg/scheduler/eventhandlers_test.go

    			oldObj: withPodName(podWithPort("oldUID", nodeName, 80), "pod"),
    			newObj: withPodName(podWithPort("oldUID", nodeName, 8080), "pod"),
    		},
    		{
    			name:   "pod updated with different UIDs",
    			oldObj: withPodName(podWithPort("oldUID", nodeName, 80), "pod"),
    			newObj: withPodName(podWithPort("newUID", nodeName, 8080), "pod"),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf_test.go

    		// Note that this same rule doesn't hold for non-variable DIEs.
    		pidx := ex.IdxFromOffset(die.Offset)
    		if pidx < 0 {
    			t.Fatalf("can't locate DIE id")
    		}
    		kids := ex.Children(pidx)
    		for _, kid := range kids {
    			if kid.Tag != dwarf.TagVariable &&
    				kid.Tag != dwarf.TagFormalParameter {
    				continue
    			}
    			kooff, originOK := kid.Val(dwarf.AttrAbstractOrigin).(dwarf.Offset)
    			if !originOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top