Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 153 for _encapsulate (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    [[custom_plugins]]
    = Understanding Plugins
    
    Gradle comes with a set of powerful core systems such as dependency management, task execution, and project configuration.
    But everything else it can do is supplied by plugins.
    
    Plugins encapsulate logic for specific tasks or integrations, such as compiling code, running tests, or deploying artifacts.
    By applying plugins, users can easily add new features to their build process without having to write complex code from scratch.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. 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)
  5. guava/src/com/google/common/reflect/TypeResolver.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeResolver.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top