Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for urlopen (0.19 sec)

  1. src/crypto/aes/gcm_s390x.go

    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	counter := g.deriveCounter(nonce)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/crypto/aes/aes_gcm.go

    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	// See GCM spec, section 7.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.go

    	if len(nonce) != g.nonceSize {
    		panic("cipher: incorrect nonce length given to GCM")
    	}
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(BlockSize)+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	var counter, tagMask [gcmBlockSize]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactory.java

            }
            if (spec instanceof VisitableURLClassLoader.Spec) {
                VisitableURLClassLoader.Spec urlSpec = (VisitableURLClassLoader.Spec) spec;
                return createClassLoaderForClassPath(urlSpec.getName() + "-daemon-payload-loader", parents, urlSpec.getClasspath());
            }
            return delegate.getClassLoaderFor(spec, parents);
        }
    
        private List<URL> urls(List<URI> classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.kt

    fun test() {
        <caret_context>val x = 0
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: BLOCK
    @org.jetbrains.kotlin.fir.plugin.AllOpen
    class Foo {
        fun call() {}
    }
    
    class Bar : Foo() {}
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 351 bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinCompilerPluginsSmokeTest.groovy

    package org.gradle.smoketests
    
    class KotlinCompilerPluginsSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.jetbrains.kotlin.plugin.allopen': TestedVersions.kotlin,
                'org.jetbrains.kotlin.plugin.spring': TestedVersions.kotlin
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 968 bytes
    - Viewed (0)
  7. src/crypto/internal/boring/aes.go

    	}
    	return dst[:n+int(outLen)]
    }
    
    var errOpen = errors.New("cipher: message authentication failed")
    
    func (g *aesGCM) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
    	if len(nonce) != gcmStandardNonceSize {
    		panic("cipher: incorrect nonce length given to GCM")
    	}
    	if len(ciphertext) < gcmTagSize {
    		return nil, errOpen
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	if g.tagSize < gcmMinimumTagSize {
    		panic("crypto/cipher: incorrect GCM tag size")
    	}
    
    	if len(ciphertext) < g.tagSize {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(g.cipher.BlockSize())+uint64(g.tagSize) {
    		return nil, errOpen
    	}
    
    	tag := ciphertext[len(ciphertext)-g.tagSize:]
    	ciphertext = ciphertext[:len(ciphertext)-g.tagSize]
    
    	var counter, tagMask [gcmBlockSize]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.ir.txt

            EXPRESSION_BODY
              BLOCK type=kotlin.Unit origin=null
                CLASS CLASS name:Foo modality:OPEN visibility:local superTypes:[kotlin.Any]
                  annotations:
                    AllOpen
                  $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.CodeFragment.run.Foo
                  CONSTRUCTOR visibility:public <> () returnType:<root>.CodeFragment.run.Foo [primary]
                    BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/js/js.translator/testData" />
            <option value="$PROJECT_DIR$/compiler/fir/raw-fir/psi2fir/testData" />
            <option value="$PROJECT_DIR$/plugins/allopen/testData" />
            <option value="$PROJECT_DIR$/plugins/android-extensions/android-extensions-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/atomicfu/atomicfu-compiler/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top