Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for _encapsulate (0.17 sec)

  1. src/html/template/content.go

    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    	// as it will be included verbatim in the template output.
    	HTML string
    
    	// HTMLAttr encapsulates an HTML attribute from a trusted source,
    	// for example, ` dir="ltr"`.
    	//
    	// Use of this type presents a security risk:
    	// the encapsulated content should come from a trusted source,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataSource.java

         *
         * This method would encapsulates all version listing for a metadata source, supplying the result (if found) to the
         * {@link BuildableModuleVersionListingResolveResult} parameter.
         *
         * Ideally, the ivyPatterns + artifactPatterns + versionLister would be encapsulated into a single 'module resource accessor'.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

      cluster->setAttr(mlir::TF::kAllowSoftPlacementAttr,
                       builder.getBoolAttr(true));
    }
    
    // Encapsulate the first partitioned call that can be reached from
    // `func` and is with compilation markers in a device cluster. For nested calls,
    // if the outermost one has the markers, encapsulates the outermost call and
    // returns. Otherwise, we'll keep going through inner calls until we found one.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K 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. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginArtifactRepositories.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.use.resolve.internal;
    
    import org.gradle.api.artifacts.dsl.RepositoryHandler;
    
    /**
     * Encapsulates the artifact repositories that should be used to resolve plugins for a particular scope (such as plugins for a particular settings object or a particular project)
     */
    public interface PluginArtifactRepositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.h

    #include "tensorflow/compiler/jit/compilability_check_util.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // Marks a subset of nodes in the graph which are to be clustered
    // with an attribute _XlaCluster=<cluster id> so they are picked up by the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top