Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for _encapsulate (0.4 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ConstructorSelector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    /**
     * Encapsulates the differences, due to backwards compatibility, in instantiation for several different types.
     */
    interface ConstructorSelector {
        /**
         * Allows this selector to veto the parameters to use with the given constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/BuildSessionState.java

    import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
    import org.gradle.internal.service.scopes.Scope;
    
    import java.io.Closeable;
    import java.util.function.Function;
    
    /**
     * Encapsulates the state for a build session.
     */
    public class BuildSessionState implements Closeable {
        private final GradleUserHomeScopeServiceRegistry userHomeScopeServiceRegistry;
        private final ServiceRegistry userHomeServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    // cluster) ops to a separate parallel_execute region to run on CPU.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractOutsideCompilationPass();
    
    // Create a pass that encapsulates StatefulPartitionedCallOp within a cluster.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateXlaClusterFormationPass();
    
    // Creates a pass that marks unsupported ops in device cluster for outside
    // compilation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/covdata/merge.go

    	pcombineflag = flag.Bool("pcombine", false, "Combine profiles derived from distinct program executables")
    	m := &mstate{
    		mm: newMetaMerge(),
    	}
    	return m
    }
    
    // mstate encapsulates state and provides methods for implementing the
    // merge operation. This type implements the CovDataVisitor interface,
    // and is designed to be used in concert with the CovDataReader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.h

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    // constant at compile time.  If this attribute is present then the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. internal/s3select/sql/record.go

    	SelectFmtCSV
    	// SelectFmtJSON - JSON format
    	SelectFmtJSON
    	// SelectFmtSIMDJSON - SIMD JSON format
    	SelectFmtSIMDJSON
    	// SelectFmtParquet - Parquet format
    	SelectFmtParquet
    )
    
    // WriteCSVOpts - encapsulates options for Select CSV output
    type WriteCSVOpts struct {
    	FieldDelimiter rune
    	Quote          rune
    	QuoteEscape    rune
    	AlwaysQuote    bool
    }
    
    // Record - is a type containing columns and their values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        const RewriteSubgraphFn& rewrite_subgraph_fn, bool reuse_existing_functions,
        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    // The attribute that marks function calls produced by the encapsulate
    // subgraphs pass and that should in turn be compiled via XlaLaunch operators.
    extern const char* const kXlaCompiledKernelAttr;
    
    // Does `node` have the kXlaCompiledKernelAttr attribute?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

    import org.gradle.initialization.IncludedBuildSpec;
    import org.gradle.internal.DisplayName;
    import org.gradle.util.Path;
    
    import java.io.File;
    import java.util.function.Function;
    
    /**
     * Encapsulates the identity and state of a particular build in a build tree.
     *
     * Implementations are not yet entirely thread-safe, but should be.
     */
    public interface BuildState {
        DisplayName getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pkg/kubelet/types/types.go

    import (
    	"net/http"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/cri-client/pkg/logs"
    )
    
    // TODO: Reconcile custom types in kubelet/types and this subpackage
    
    // HTTPDoer encapsulates http.Do functionality
    type HTTPDoer interface {
    	Do(req *http.Request) (*http.Response, error)
    }
    
    // Timestamp wraps around time.Time and offers utilities to format and parse
    // the time using RFC3339Nano
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top