- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 775 for glog (0.03 sec)
-
.gitignore
.classpath .project .settings .gradle eclipsebin bin gen build out lib generated target pom.xml.* release.properties local.properties .idea *.iml *.ipr *.iws *.log classes obj .DS_Store # Special Mkdocs files docs/4.x docs/changelog.md docs/contributing.md docs/index.md # jenv /.java-version /site/
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 10 11:52:12 UTC 2022 - 337 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java
* under the License. */ package org.apache.maven.internal.impl; import java.util.function.Supplier; import org.apache.maven.api.plugin.Log; import org.slf4j.Logger; import static java.util.Objects.requireNonNull; public class DefaultLog implements Log { private final Logger logger; public DefaultLog(Logger logger) { this.logger = requireNonNull(logger); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/debugging/healing-bin/main.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package main import ( "archive/zip" "bytes" "encoding/json" "fmt" "io" "log" "os" "strings" "github.com/minio/cli" "github.com/tinylib/msgp/msgp" ) func main() { app := cli.NewApp() app.Copyright = "MinIO, Inc." app.Usage = "healing.bin to JSON"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import org.codelibs.core.exception.ParserConfigurationRuntimeException; import org.codelibs.core.log.Logger; /** * {@link DocumentBuilderFactory}の用のユーティリティクラスです。 * * @author higa */ public abstract class DocumentBuilderFactoryUtil {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
"Failed to log out.", e); } }).orElseThrow(() -> new SsoMessageException( messages -> messages.addErrorsFailedToProcessSsoRequest(UserMessages.GLOBAL_PROPERTY_KEY, "Invalid state."), "Failed to log out.", new SsoProcessException("Invalid state."))); return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
cmdList.add("-Dfess.log.path=" + (logFilePath != null ? logFilePath : systemHelper.getLogFilePath())); addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY)); if (logLevel == null) { addSystemProperty(cmdList, "fess.log.level", null, null); } else { cmdList.add("-Dfess.log.level=" + logLevel);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 15.1K bytes - Viewed (0) -
docs/lambda/README.md
```go package main import ( "context" "log" "net/url" "time" "fmt" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" ) func main() { s3Client, err := minio.New("localhost:9000", &minio.Options{ Creds: credentials.NewStaticV4("minioadmin", "minioadmin", ""), Secure: false, }) if err != nil { log.Fatalln(err) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
import jcifs.DialectVersion; import jcifs.ResolverType; import jcifs.SmbConstants; /** * @author mbechler * */ public class BaseConfiguration implements Configuration { private static final Logger log = LoggerFactory.getLogger(BaseConfiguration.class); private static final Map<String, Integer> DEFAULT_BATCH_LIMITS = new HashMap<>(); static { DEFAULT_BATCH_LIMITS.put("TreeConnectAndX.QueryInformation", 0);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
docs/bucket/versioning/DESIGN.md
} } } ] } ``` ### v1.3+ versions Version 1.3 introduces changes to help with [faster metadata reads and updates](https://blog.min.io/minio-versioning-metadata-deep-dive/) | Entry | Encoding | Content | ----------------|-----------------------------|----------------------------------------
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 5.8K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
return (x2.compareTo(halfPowerSquared) <= 0) ? floorLog : floorLog + 1; } throw new AssertionError(); } private static final double LN_10 = Math.log(10); private static final double LN_2 = Math.log(2); /** * Returns the square root of {@code x}, rounded with the specified rounding mode. * * @throws IllegalArgumentException if {@code x < 0}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 18.8K bytes - Viewed (0)