Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for _encapsulate (0.19 sec)

  1. pkg/kubelet/kubelet_server_journal.go

    			return
    		}
    		defer gz.Close()
    		out = gz
    	}
    	nlq.Copy(out)
    }
    
    // nodeLogQuery encapsulates the log query request
    type nodeLogQuery struct {
    	// Services are the list of services to be queried
    	Services []string
    	// Files are the list of files
    	Files []string
    	options
    }
    
    // options encapsulates the query options for services
    type options struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

    import org.gradle.api.tasks.compile.JavaCompile;
    import org.gradle.internal.component.external.model.ImmutableCapabilities;
    
    import javax.annotation.Nullable;
    
    /**
     * A Jvm Feature wraps a source set to encapsulate the logic and domain objects required to
     * implement a feature of a JVM component. Features are used to model constructs like
     * production libraries, test suites, test fixtures, applications, etc. While features are not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/internal/coverage/pods/pods.go

    // license that can be found in the LICENSE file.
    
    package pods
    
    import (
    	"cmp"
    	"fmt"
    	"internal/coverage"
    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    )
    
    // Pod encapsulates a set of files emitted during the executions of a
    // coverage-instrumented binary. Each pod contains a single meta-data
    // file, and then 0 or more counter data files that refer to that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top