Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 153 for _encapsulate (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/EnvironmentModificationResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration;
    
    /**
     * Encapsulates what happened when we tried to modify the environment.
     */
    public enum EnvironmentModificationResult {
        SUCCESS(null),
        UNSUPPORTED_ENVIRONMENT("There is no native integration with this operating environment.");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FilesFinder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal;
    
    import java.io.File;
    import java.io.FileFilter;
    
    /**
     * Encapsulates a criteria for finding files.
     */
    public interface FilesFinder {
        /**
         * Find files according to this finder's criteria within the supplied base
         * directory that pass the supplied {@link FileFilter}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1002 bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/CompilerWorkerExecutor.java

    import org.gradle.workers.WorkParameters;
    import org.gradle.workers.internal.DaemonForkOptions;
    import org.gradle.workers.internal.DefaultWorkResult;
    
    import java.io.Serializable;
    
    /**
     * Encapsulates the logic to execute a work item for an {@link AbstractDaemonCompiler}.
     */
    public interface CompilerWorkerExecutor {
        /**
         * Executes a compiler specified by the {@link CompilerParameters}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/test_server.go

    package testing
    
    import (
    	"testing"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    
    	"k8s.io/apiserver/pkg/storage/etcd3/testserver"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    )
    
    // EtcdTestServer encapsulates the datastructures needed to start local instance for testing
    type EtcdTestServer struct {
    	V3Client *clientv3.Client
    }
    
    func (e *EtcdTestServer) Terminate(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top