Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for gids (0.32 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonStopEventsTest.groovy

            expect:
            DaemonStopEvents.uniqueRecentDaemonStopEvents([immediateStop1, immediateStop1]) == [immediateStop1]
        }
    
        def "uniqueRecentDaemonStopEvents() returns most severe event given same PIDs"() {
            expect:
            DaemonStopEvents.uniqueRecentDaemonStopEvents([gracefulStop1, immediateStop1]) == [immediateStop1]
        }
    
        def "uniqueRecentDaemonStopEvents() omits stop events older than 1 hour"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/build.gradle.kts

    import gradlebuild.basics.isBundleGroovy4
    import gradlebuild.basics.tasks.PackageListGenerator
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "A library that aids in testing Gradle plugins and build logic in general"
    
    errorprone {
        disabledChecks.addAll(
            "CatchAndPrintStackTrace", // 1 occurrences
            "ImmutableEnumChecker", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/runtime/runtime-gdb.py

    	def invoke(self, arg, _from_tty):
    		goid_str, cmd = arg.split(None, 1)
    		goids = []
    
    		if goid_str == 'all':
    			for ptr in SliceValue(gdb.parse_and_eval("'runtime.allgs'")):
    				goids.append(int(ptr['goid']))
    		else:
    			goids = [int(gdb.parse_and_eval(goid_str))]
    
    		for goid in goids:
    			self.invoke_per_goid(goid, cmd)
    
    	def invoke_per_goid(self, goid, cmd):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                } else {
                    final List<PDNameTreeNode<PDComplexFileSpecification>> kids = efTree.getKids();
                    if (kids == null) {
                        return;
                    }
                    for (final PDNameTreeNode<PDComplexFileSpecification> node : kids) {
                        processEmbeddedDocNames(node.getNames(), writer);
                    }
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvents.java

                Long pid = event.getPid();
                if (event.occurredInLastHours(RECENTLY) && !uniqueStoppedPids.contains(pid)) {
                    // We can only determine if two DaemonStopEvent point at the same daemon if we know the PIDs
                    if (pid != null) {
                        uniqueStoppedPids.add(pid);
                    }
                    recentStopEvents.add(event);
                }
            }
            return recentStopEvents;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_pseudo.txt

    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    
    # We can resolve the @master branch without unshallowing the local repository
    # (even with older gits), so try that before we do anything else.
    # (This replicates https://golang.org/issue/26713 with git 2.7.4.)
    go get github.com/rsc/legacytest@master
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. cmd/local-locker_test.go

    					if len(l.lockUID) == locks*readers {
    						t.Fatalf("objects uids all remain, unlikely")
    					}
    					if len(l.lockMap) == 0 {
    						t.Fatalf("objects all deleted, 0 remains")
    					}
    					if len(l.lockUID) == 0 {
    						t.Fatalf("objects uids all deleted, 0 remains")
    					}
    
    					start = time.Now()
    					l.expireOldLocks(-time.Minute)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/info.go

    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    //    These categories should always result in a break between two cased letters.
    //    Rule: Always break.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/controller/deployment/recreate_test.go

    	rs := newReplicaSet(d, fmt.Sprintf("foo-%s", uid), 0)
    	rs.UID = types.UID(uid)
    	return rs
    }
    
    func podMapWithUIDs(uids []string) map[types.UID][]*v1.Pod {
    	podMap := make(map[types.UID][]*v1.Pod)
    	for _, uid := range uids {
    		podMap[types.UID(uid)] = []*v1.Pod{
    			{ /* supposedly a pod */ },
    			{ /* supposedly another pod pod */ },
    		}
    	}
    	return podMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cgroup_manager_unsupported.go

    	return errNotSupported
    }
    
    func (m *unsupportedCgroupManager) MemoryUsage(_ CgroupName) (int64, error) {
    	return -1, errNotSupported
    }
    
    func (m *unsupportedCgroupManager) Pids(_ CgroupName) []int {
    	return nil
    }
    
    func (m *unsupportedCgroupManager) CgroupName(name string) CgroupName {
    	return CgroupName([]string{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top