Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 139 for security (0.97 sec)

  1. .teamcity/test-buckets.json

    					"time",
    					"logging-api",
    					"kotlin-dsl-plugins",
    					"serialization",
    					"toolchains-jvm-shared",
    					"docs-asciidoctor-extensions-base",
    					"internal-instrumentation-processor",
    					"security",
    					"input-tracking",
    					"base-ide-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    					"worker-main",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Striped64.java

        try {
          return sun.misc.Unsafe.getUnsafe();
        } catch (SecurityException tryReflectionInstead) {
        }
        try {
          return java.security.AccessController.doPrivileged(
              new java.security.PrivilegedExceptionAction<sun.misc.Unsafe>() {
                @Override
                public sun.misc.Unsafe run() throws Exception {
                  Class<sun.misc.Unsafe> k = sun.misc.Unsafe.class;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/crypto/tls/alert.go

    	alertExportRestriction:            "export restriction",
    	alertProtocolVersion:              "protocol version not supported",
    	alertInsufficientSecurity:         "insufficient security level",
    	alertInternalError:                "internal error",
    	alertInappropriateFallback:        "inappropriate fallback",
    	alertUserCanceled:                 "user canceled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

    import static org.gradle.internal.cc.impl.EnvironmentVarKeySource.GRADLE_ENCRYPTION_KEY_ENV_KEY
    
    import java.nio.file.FileVisitOption
    import java.nio.file.Files
    import java.nio.file.Path
    import java.security.KeyStore
    import java.util.stream.Stream
    
    import static org.gradle.initialization.IGradlePropertiesLoader.ENV_PROJECT_PROPERTIES_PREFIX
    import static org.gradle.util.Matchers.containsLine
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import javax.annotation.Nullable;
    import java.security.ProtectionDomain;
    
    /**
     * A ClassLoader implementing this interface gets a special treatment from the instrumenting Java agent.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

    import org.gradle.util.internal.SupportedEncryptionAlgorithm
    import java.io.Closeable
    import java.io.File
    import java.io.InputStream
    import java.io.OutputStream
    import java.security.InvalidKeyException
    import java.security.KeyStore
    import java.util.Base64
    import javax.crypto.CipherInputStream
    import javax.crypto.CipherOutputStream
    import javax.crypto.KeyGenerator
    import javax.crypto.SecretKey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. android/pom.xml

            <!--
                In order to build and run the tests against JDK 18+, we need to pass java.security.manager=allow, to make
                the deprecated 'java.lang.SecurityManager' available for use.
             -->
            <jdk>[18,]</jdk>
          </activation>
          <properties>
            <test.add.args>-Djava.security.manager=allow</test.add.args>
          </properties>
        </profile>
      </profiles>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pom.xml

            <!--
                In order to build and run the tests against JDK 18+, we need to pass java.security.manager=allow, to make
                the deprecated 'java.lang.SecurityManager' available for use.
             -->
            <jdk>[18,]</jdk>
          </activation>
          <properties>
            <test.add.args>-Djava.security.manager=allow</test.add.args>
          </properties>
        </profile>
      </profiles>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    	ID   uint16
    	Name string
    
    	// Supported versions is the list of TLS protocol versions that can
    	// negotiate this cipher suite.
    	SupportedVersions []uint16
    
    	// Insecure is true if the cipher suite has known security issues
    	// due to its primitives, design, or implementation.
    	Insecure bool
    }
    
    var (
    	supportedUpToTLS12 = []uint16{VersionTLS10, VersionTLS11, VersionTLS12}
    	supportedOnlyTLS12 = []uint16{VersionTLS12}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/UnsignedBytes.java

              return sun.misc.Unsafe.getUnsafe();
            } catch (SecurityException e) {
              // that's okay; try reflection instead
            }
            try {
              return java.security.AccessController.doPrivileged(
                  new java.security.PrivilegedExceptionAction<sun.misc.Unsafe>() {
                    @Override
                    public sun.misc.Unsafe run() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top