Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for _encapsulate (0.27 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* c = Unary(a, b1.opts().WithName("C").WithAttr("_encapsulate", "F1"));
        Node* d =
            Binary(b, c, b1.opts().WithName("D").WithAttr("_encapsulate", "F1"));
        Node* e = Binary(c, d,
                         b1.opts()
                             .WithName("E")
                             .WithControlInputs({b, d})
                             .WithAttr("_encapsulate", "F1")
                             .WithAttr("_outside", "O1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. src/crypto/internal/mlkem768/mlkem768_test.go

    	for i := 0; i < len(ek)-1; i++ {
    		if _, _, err := Encapsulate(ek[:i]); err == nil {
    			t.Errorf("expected error for ek length %d", i)
    		}
    	}
    	ekLong := ek
    	for i := 0; i < 100; i++ {
    		ekLong = append(ekLong, 0)
    		if _, _, err := Encapsulate(ekLong); err == nil {
    			t.Errorf("expected error for ek length %d", len(ekLong))
    		}
    	}
    
    	c, _, err := Encapsulate(ek)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      // This pass has two stages:
      // a) first, we call EncapsulateSubgraphsPass to encapsulate all nodes
      //    marked with the same _xla_compile_id attribute into functions. These
      //    functions contain the computations to be passed to XlaLaunch. During
      //    encapsulation, we sort the arguments into the order expected by
      //    XlaLaunch.
      static Status Encapsulate(std::unique_ptr<Graph>* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/internal/mlkem768/mlkem768.go

    	}
    
    	return dk
    }
    
    // Encapsulate generates a shared key and an associated ciphertext from an
    // encapsulation key, drawing random bytes from crypto/rand.
    // If the encapsulation key is not valid, Encapsulate returns an error.
    //
    // The shared key must be kept secret.
    func Encapsulate(encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  5. src/crypto/tls/key_schedule.go

    	K, err := mlkem768.Decapsulate(dk, c)
    	if err != nil {
    		return nil, err
    	}
    	return kyberSharedSecret(K, c), nil
    }
    
    // kyberEncapsulate implements encapsulation according to Kyber Round 3.
    func kyberEncapsulate(ek []byte) (c, ss []byte, err error) {
    	c, ss, err = mlkem768.Encapsulate(ek)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceRef.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A service that provides the plugin service for the current build invocation.
     *
     * The plugin uses this to encapsulate its service in user facing code that may be cached.
     * This allows such cached code to use the plugin service for the current build when used from-cache.
     */
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionExecutionTimeValue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.file;
    
    
    /**
     * Encapsulates the logic for serializing and deserializing a file collection to and from the configuration cache.
     */
    public interface FileCollectionExecutionTimeValue {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 925 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DynamicLookupRoutine.java

    import org.gradle.internal.metaobject.DynamicInvokeResult;
    import org.gradle.internal.metaobject.DynamicObject;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    
    /**
     * Encapsulates the implementations of the common ways to interact with a {@link DynamicObject}.
     */
    public interface DynamicLookupRoutine {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:49:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/configuration-management.apt

     various properties files. What needs to be done is to encapsulate all of this in the POM.
    
     Typically users parameterize the use of plugins, or have custom values like ${user.name}
     for use in elements like the <developerConnection/>. It would be idea if we
     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

    import org.gradle.internal.hash.Hasher;
    
    import java.io.File;
    
    /**
     * Classpath element transform factory. There are some differences when instrumenting classes to be loaded by the instrumenting agent, this interface encapsulates them.
     */
    public interface ClasspathElementTransformFactory {
        /**
         * Updates jar/directory content hash to account for the transform produced by this factory.
         *
         * @param hasher the hasher to modify
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top