Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for gids (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

    public class ResolutionResultsStoreFactory implements Closeable {
        private final static Logger LOG = Logging.getLogger(ResolutionResultsStoreFactory.class);
        private static final int DEFAULT_MAX_SIZE = 2000000000; //2 gigs
    
        private final TemporaryFileProvider temp;
        private final int maxSize;
    
        private CachedStoreFactory<TransientConfigurationResults> oldModelCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    			return nil, errors.New("x509: invalid certificate policies")
    		}
    		oid, ok := newOIDFromDER(OIDBytes)
    		if !ok {
    			return nil, errors.New("x509: invalid certificate policies")
    		}
    		oids = append(oids, oid)
    	}
    	return oids, nil
    }
    
    // isValidIPMask reports whether mask consists of zero or more 1 bits, followed by zero bits.
    func isValidIPMask(mask []byte) bool {
    	seenZero := false
    
    	for _, b := range mask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            binFile.text = """#!/usr/bin/env sh
    echo Script PID: \$\$
    
    $binFile.text
    """
    
            when:
            runViaStartScript()
            def pids = result.output.findAll(/PID: \d+/)
    
            then:
            assert pids.size() == 2
            assert pids[0] == pids[1]
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "can execute generated Windows start script"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

        local gigs
        gigs=$(kube::golang::get_physmem)
    
        if [[ ${gigs} -ge ${KUBE_PARALLEL_BUILD_MEMORY} ]]; then
          kube::log::status "Multiple platforms requested and available ${gigs}G >= threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in parallel"
          parallel=true
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/dwarf.go

    func inlChildren(slot int, calls *InlCalls) []int {
    	var kids []int
    	if slot != -1 {
    		for _, k := range calls.Calls[slot].Children {
    			if !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	} else {
    		for k := 0; k < len(calls.Calls); k += 1 {
    			if calls.Calls[k].Root && !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	}
    	return kids
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "",
    			expectContainerID: "",
    			expectMsg:         "multiple pod UIDs found in cgroups (11111111-b29f-11e7-9350-020968147796, 22222222-b29f-11e7-9350-020968147796)",
    		},
    	} {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top