Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for parseLog (0.12 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

            String runtimeMXBeanName = ManagementFactory.getRuntimeMXBean().getName();
            int separatorPos = runtimeMXBeanName.indexOf('@');
            if (separatorPos > -1) {
                try {
                    pid = Long.parseLong(runtimeMXBeanName.substring(0, separatorPos));
                } catch (NumberFormatException e) {
                    LOGGER.debug("Native-platform process: failed to parse PID from Runtime MX bean name: " + runtimeMXBeanName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    		}
    	} else {
    		t.pVariant, t.pExt = 0, 0
    	}
    	return t, scan.err
    }
    
    // parseTag parses language, script, region and variants.
    // It returns a Tag and the end position in the input that was parsed.
    // If doNorm is true, then <lang>-<extlang> will be normalized to <extlang>.
    func parseTag(scan *scanner, doNorm bool) (t Tag, end int) {
    	var e error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SID.java

            this.revision = Byte.parseByte(st.nextToken());
            String tmp = st.nextToken();
            long id = 0;
            if ( tmp.startsWith("0x") )
                id = Long.parseLong(tmp.substring(2), 16);
            else
                id = Long.parseLong(tmp);
    
            this.identifier_authority = new byte[6];
            for ( int i = 5; id > 0; i-- ) {
                this.identifier_authority[ i ] = (byte) ( id % 256 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/TestLocking.java

                    ai++;
                    t.numIter = Integer.parseInt(args[ai]);
                } else if (args[ai].equals("-d")) {
                    ai++;
                    t.delay = Long.parseLong(args[ai]);
                } else {
                    t.url = args[ai];
                }
            }
    
            Thread[] threads = new Thread[t.numThreads];
            int ti;
    
            for (ti = 0; ti < t.numThreads; ti++) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // tagOptions is the string following a comma in a struct field's "json"
    // tag, or the empty string. It does not include the leading comma.
    type tagOptions string
    
    // parseTag splits a struct field's json tag into its name and
    // comma-separated options.
    func parseTag(tag string) (string, tagOptions) {
    	if idx := strings.Index(tag, ","); idx != -1 {
    		return tag[:idx], tagOptions(tag[idx+1:])
    	}
    	return tag, tagOptions("")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

                String pidString = decoder.readNullableString();
                String uid = decoder.readString();
                Long pid = pidString == null ? null : Long.parseLong(pidString);
                Address address = new MultiChoiceAddressSerializer().read(decoder);
                File daemonLog = new File(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadataFactory.java

                    throw new IllegalStateException("Cached result format error, corrupted origin metadata");
                }
    
                Duration originalExecutionTime = Duration.ofMillis(Long.parseLong(executionTimeAsString));
                return new OriginMetadata(
                    originBuildInvocationId,
                    HashCode.fromString(originBuildCacheKey),
                    originalExecutionTime);
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                    clickLog.setUrl(url);
                    clickLog.setRequestedAt(systemHelper.getCurrentTimeAsLocalDateTime());
                    clickLog.setQueryRequestedAt(DfTypeUtil.toLocalDateTime(Long.parseLong(form.rt)));
                    clickLog.setUserSessionId(userSessionId);
                    clickLog.setDocId(form.docId);
                    clickLog.setQueryId(form.queryId);
                    if (form.order != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/FacetInfo.java

                size = fessConfig.getQueryFacetFieldsSizeAsInteger();
            }
            if (StringUtil.isNotBlank(fessConfig.getQueryFacetFieldsMinDocCount())) {
                minDocCount = Long.parseLong(fessConfig.getQueryFacetFieldsMinDocCount());
            }
            if (StringUtil.isNotBlank(fessConfig.getQueryFacetFieldsSort())) {
                sort = fessConfig.getQueryFacetFieldsSort();
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpKeyId.java

            if (keyId == null) {
                throw new IllegalArgumentException("'keyId' cannot be null");
            }
    
            String normalised = normaliseKeyId(keyId);
            try {
                return Long.parseLong(normalised, 16);
            } catch (NumberFormatException e) {
                throw new IllegalArgumentException("the key id \'" + keyId + "\' is not a valid hex string");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top