Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for reopen (0.28 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go

    	return c.seal(dst, nonce, plaintext, additionalData)
    }
    
    var errOpen = errors.New("chacha20poly1305: message authentication failed")
    
    func (c *chacha20poly1305) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
    	if len(nonce) != NonceSize {
    		panic("chacha20poly1305: bad nonce length passed to Open")
    	}
    	if len(ciphertext) < 16 {
    		return nil, errOpen
    	}
    	if uint64(len(ciphertext)) > (1<<38)-48 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. releasenotes/notes/wasm-fail-open.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 02 21:32:02 UTC 2023
    - 169 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            new DefaultEclipseRuntime(new DefaultEclipseWorkspace(new File("workspace"), projects))
        }
    
        EclipseWorkspaceProject gradleProject(Project project, boolean isOpen = true) {
            new DefaultEclipseWorkspaceProject(project.name, project.projectDir, isOpen)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/RunBuildDependenciesTaskBuilderTest.groovy

            new DefaultEclipseRuntime(new DefaultEclipseWorkspace(new File("workspace"), projects))
        }
    
        EclipseWorkspaceProject gradleProject(Project project, boolean isOpen = true) {
            new DefaultEclipseWorkspaceProject(project.name, project.projectDir, isOpen)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go

    	if alias.InexactOverlap(out, ciphertext) {
    		panic("chacha20poly1305: invalid buffer overlap")
    	}
    	if !p.Verify(tag) {
    		for i := range out {
    			out[i] = 0
    		}
    		return nil, errOpen
    	}
    
    	s.XORKeyStream(out, ciphertext)
    	return ret, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. tools/packaging/common/sidecar.env

    # Uncomment to enable debugging
    # ISTIO_AGENT_FLAGS="--proxyLogLevel debug"
    
    # Directory for stdout redirection. The redirection is required because envoy attempts to open
    # /dev/stdout - must be a real file. Will be used for access logs. Additional config for logsaver
    # needs to be made, envoy reopens the file on SIGUSR1
    # ISTIO_LOG_DIR=/var/log/istio
    
    # Installation directory for istio binaries, customize in case you're using a binary.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    // golang.org/x/telemetry/counter.Open.
    func Open(telemetryDir string) {
    	openedMu.Lock()
    	defer openedMu.Unlock()
    	if opened {
    		panic("Open was called more than once")
    	}
    	telemetry.Default = telemetry.NewDir(telemetryDir)
    
    	counter.Open()
    	opened = true
    }
    
    // ReadCounter reads the given counter.
    func ReadCounter(c *counter.Counter) (count uint64, _ error) {
    	return ic.Read(c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbPipeHandle.java

         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close () throws CIFSException;
    
    
        /**
         * @return whether the FD is open and valid
         */
        boolean isOpen ();
    
    
        /**
         * @return whether the FD was previously open but became invalid
         */
        boolean isStale ();
    
    
        /**
         * @param type
         * @return unwrapped instance
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    		panic("chacha20poly1305: invalid buffer overlap")
    	}
    	if !chacha20Poly1305Open(out, state[:], ciphertext, additionalData) {
    		for i := range out {
    			out[i] = 0
    		}
    		return nil, errOpen
    	}
    
    	return ret, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. okhttp-sse/api/okhttp-sse.api

    	public fun onEvent (Lokhttp3/sse/EventSource;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    	public fun onFailure (Lokhttp3/sse/EventSource;Ljava/lang/Throwable;Lokhttp3/Response;)V
    	public fun onOpen (Lokhttp3/sse/EventSource;Lokhttp3/Response;)V
    }
    
    public final class okhttp3/sse/EventSources {
    	public static final field INSTANCE Lokhttp3/sse/EventSources;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 14:39:59 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top