Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for _encapsulate (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.Set;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates the identity and state of a particular project in a build tree.
     */
    @ThreadSafe
    public interface ProjectState extends ModelContainer<ProjectInternal> {
        DisplayName getDisplayName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    type Dir struct {
    	dir, local, upload, debug, modefile string
    }
    
    // NewDir creates a new Dir encapsulating paths in the given dir.
    //
    // NewDir does not create any new directories or files--it merely encapsulates
    // the telemetry directory layout.
    func NewDir(dir string) Dir {
    	return Dir{
    		dir:      dir,
    		local:    filepath.Join(dir, "local"),
    		upload:   filepath.Join(dir, "upload"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    == Convention Plugins
    
    Convention plugins are a way to encapsulate and reuse common build logic in Gradle.
    They allow you to define a set of conventions for a project, and then apply those conventions to other projects or modules.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/Transport.java

    import java.io.*;
    import java.net.*;
    import java.util.*;
    
    import jcifs.smb1.util.LogStream;
    
    /**
     * This class simplifies communication for protocols that support
     * multiplexing requests. It encapsulates a stream and some protocol
     * knowledge (provided by a concrete subclass) so that connecting,
     * disconnecting, sending, and receiving can be syncronized
     * properly. Apparatus is provided to send and receive requests
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	Reset() error
    	// Headers returns the headers used to create the stream.
    	Headers() http.Header
    	// Identifier returns the stream's ID.
    	Identifier() uint32
    }
    
    // UpgradeFailureError encapsulates the cause for why the streaming
    // upgrade request failed. Implements error interface.
    type UpgradeFailureError struct {
    	Cause error
    }
    
    func (u *UpgradeFailureError) Error() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. pkg/printers/tablegenerator.go

    	"reflect"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // GenerateOptions encapsulates attributes for table generation.
    type GenerateOptions struct {
    	NoHeaders bool
    	Wide      bool
    }
    
    // TableGenerator - an interface for generating metav1.Table provided a runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

        // <plugin/> block in a Maven POM. We have to do some wiggling to pull the sources of information
        // together and this really shows the problem of constructing a sensible default configuration but
        // it's all encapsulated here so it appears normalized to the POM builder.
    
        // We are going to take the project packaging and find all plugins in the default lifecycle and create
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/net/http/fcgi/fcgi.go

    }
    
    func encodeSize(b []byte, size uint32) int {
    	if size > 127 {
    		size |= 1 << 31
    		binary.BigEndian.PutUint32(b, size)
    		return 4
    	}
    	b[0] = byte(size)
    	return 1
    }
    
    // bufWriter encapsulates bufio.Writer but also closes the underlying stream when
    // Closed.
    type bufWriter struct {
    	closer io.Closer
    	*bufio.Writer
    }
    
    func (w *bufWriter) Close() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/volume_stat_calculator.go

    	pod           *v1.Pod
    	stopChannel   chan struct{}
    	startO        sync.Once
    	stopO         sync.Once
    	latest        atomic.Value
    	eventRecorder record.EventRecorder
    }
    
    // PodVolumeStats encapsulates the VolumeStats for a pod.
    // It consists of two lists, for local ephemeral volumes, and for persistent volumes respectively.
    type PodVolumeStats struct {
    	EphemeralVolumes  []stats.VolumeStats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_util.h

    // stored in node attribute `kXlaInferredShapesAttrName`.
    //
    // We have to perform shape inference before encapsulation because after
    // encapsulation, some nodes will be encapsulated into function call, and shape
    // inference does not handle function call at the moment.
    Status PerformStaticShapeInferenceBeforeEncapsulation(Graph* g);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top