Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for _encapsulate (0.34 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. src/cmd/asm/internal/arch/riscv64.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file encapsulates some of the odd characteristics of the RISCV64
    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/riscv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 15 08:13:28 UTC 2020
    - 943 bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/s390x.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file encapsulates some of the odd characteristics of the
    // s390x instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj/s390x"
    )
    
    func jumpS390x(word string) bool {
    	switch word {
    	case "BRC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 14:55:25 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top