- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 575 for repeat (0.09 sec)
-
src/bufio/example_test.go
fmt.Println(scanner.Text()) // Println will add back the final '\n' } if err := scanner.Err(); err != nil { fmt.Fprintln(os.Stderr, "reading standard input:", err) } } // Return the most recent call to Scan as a []byte. func ExampleScanner_Bytes() { scanner := bufio.NewScanner(strings.NewReader("gopher")) for scanner.Scan() { fmt.Println(len(scanner.Bytes()) == 6) } if err := scanner.Err(); err != nil {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 5.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
import java.util.Date; import java.util.Locale; import java.util.Properties; import org.apache.maven.jline.MessageUtils; import org.apache.maven.utils.Os; import org.slf4j.Logger; /** * Utility class used to report errors, statistics, application version info, etc. * */ public final class CLIReportingUtils { // CHECKSTYLE_OFF: MagicNumber public static final long MB = 1024 * 1024;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java
* {@link Session#resolveDependencies resolveDependencies(...)} when at least one dependency * cannot be associated to any type specified in the {@code desiredTypes} argument. * Plugins can choose to report a warning to users when unresolved paths exist. */ PathType UNRESOLVED = new PathType() { @Override public String name() { return "UNRESOLVED"; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5K bytes - Viewed (0) -
CODE_OF_CONDUCT.md
acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Oct 17 06:18:13 UTC 2024 - 5K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java
} } }); assertTrue(at.compareAndSet(1.0, 2.0)); awaitTermination(t); assertBitEquals(3.0, at.get()); } /** repeated weakCompareAndSet succeeds in changing value when equal to expected */ public void testWeakCompareAndSet() { double prev = Math.E; double unused = Math.E + Math.PI; AtomicDouble at = new AtomicDouble(prev);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 10.3K bytes - Viewed (0) -
cmd/veeam-sos-api.go
StorageCurrentTaskLimit int `xml:"StorageCurrentTaskLimit,omitempty"` KBBlockSize int `xml:"KbBlockSize"` } `xml:"SystemRecommendations"` } // This optional functionality allows vendors to report space information to Veeam products, and Veeam will make placement // decisions based on this information. For example, Veeam Backup & Replication has a Scale-out-Backup-Repository feature where
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 00:34:56 UTC 2024 - 8.8K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
org.apache.ivy.core.module.id.ModuleRevisionId[] getRealDependencyRev(); public final org.apache.ivy.core.report.MetadataArtifactDown getMetadataArtifactR(org.apache.ivy.core.module.id.ModuleRevisionId); } org/apache/ivy/plugins/report/XmlReportWriter.class package org.apache.ivy.plugins.report; public final synchronized class XmlReportWriter { public void XmlReportWriter(); public final void output(org.apache.ivy.core.report.ConfigurationResolve, String[], java.io.OutputStream); private void ouputRevision(org.ap...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
cmd/storage-errors.go
var errMaxVersionsExceeded = StorageErr("maximum versions exceeded, please delete few versions to proceed") // errUnexpected - unexpected error, requires manual intervention. var errUnexpected = StorageErr("unexpected error, please report this issue at https://github.com/minio/minio/issues") // errCorruptedFormat - corrupted format. var errCorruptedFormat = StorageErr("corrupted format") // errCorruptedBackend - corrupted backend.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
* the user may receive a different error from a legacy server than that of * a newer variant such as Windows NT and above. If you should encounter * such a case, please report it to jcifs at samba dot org and we will * change the mapping. */ public class SmbException extends CIFSException implements NtStatus, DosError, WinError { /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:16:55 UTC 2018 - 5.9K bytes - Viewed (0) -
cni/pkg/util/podutil.go
// otherwise fallback to 'PodIP'. // // Note that very early in the pod's lifecycle (before all the node CNI plugin invocations finish) // K8S may not have received the pod IPs yet, and may not report the pod as having any. func GetPodIPsIfPresent(pod *corev1.Pod) []netip.Addr { var podIPs []netip.Addr if len(pod.Status.PodIPs) != 0 { for _, pip := range pod.Status.PodIPs { ip := netip.MustParseAddr(pip.IP)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 4.7K bytes - Viewed (0)