Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for security (0.89 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.Writer;
    import java.nio.charset.StandardCharsets;
    import java.security.MessageDigest;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    
    import org.apache.maven.api.DependencyScope;
    import org.apache.maven.artifact.factory.ArtifactFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    		}
    	}
    }
    
    const goSumMismatch = `
    
    SECURITY ERROR
    This download does NOT match an earlier download recorded in go.sum.
    The bits may have been replaced on the origin server, or an attacker may
    have intercepted the download attempt.
    
    For more information, see 'go help module-auth'.
    `
    
    const sumdbMismatch = `
    
    SECURITY ERROR
    This download does NOT match the one reported by the checksum server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val javaParser = "com.github.javaparser:javaparser-core"
        val jetty = "org.eclipse.jetty:jetty-http"
        val jettySecurity = "org.eclipse.jetty:jetty-security"
        val jettyServer = "org.eclipse.jetty:jetty-server"
        val jettyServlet = "org.eclipse.jetty:jetty-servlet"
        val jettyUtil = "org.eclipse.jetty:jetty-util"
        val jettyWebApp = "org.eclipse.jetty:jetty-webapp"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Types.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Proxy;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.lang.reflect.WildcardType;
    import java.security.AccessControlException;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Map.Entry;
    import java.util.concurrent.atomic.AtomicReference;
    import javax.annotation.CheckForNull;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// We intentionally avoid the actual name both because of possible
    	// conflicts with valid file system paths and because we want to ensure
    	// that one checkout is never nested inside another. That nesting has
    	// led to security problems in the past.
    	if strings.Contains(typ, ":") {
    		return "", "", fmt.Errorf("codehost.WorkDir: type cannot contain colon")
    	}
    	key := typ + ":" + name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

       * </ul>
       *
       * <p>A "coerced" IPv4 address is equivalent to itself.
       *
       * <p>NOTE: This method is failsafe for security purposes: ALL IPv6 addresses (except localhost
       * (::1)) are hashed to avoid the security risk associated with extracting an embedded IPv4
       * address that might permit elevated privileges.
       *
       * @param ip {@link InetAddress} to "coerce"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Types.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Proxy;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.lang.reflect.WildcardType;
    import java.security.AccessControlException;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Map.Entry;
    import java.util.concurrent.atomic.AtomicReference;
    import javax.annotation.CheckForNull;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    Go package ecosystem, in which code can be imported from any server,
    but it is also a potential security problem, if a malicious server finds a
    way to cause the invoked version control command to run unintended code.
    
    To balance the functionality and security concerns, the 'go get' command
    by default will only use git and hg to download code from public servers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    For example:
    
    	// #cgo pkg-config: png cairo
    	// #include <png.h>
    	import "C"
    
    The default pkg-config tool may be changed by setting the PKG_CONFIG environment variable.
    
    For security reasons, only a limited set of flags are allowed, notably -D, -U, -I, and -l.
    To allow additional flags, set CGO_CFLAGS_ALLOW to a regular expression
    matching the new flags. To disallow flags that would otherwise be allowed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

    import org.codelibs.core.beans.factory.BeanDescFactory;
    import org.codelibs.core.beans.util.BeanUtil;
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.security.MessageDigestUtil;
    import org.codelibs.fess.crawler.client.FesenClient;
    import org.codelibs.fess.crawler.entity.EsAccessResult;
    import org.codelibs.fess.crawler.entity.EsAccessResultData;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top