Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,900 for holds (0.06 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Holds data relevant for an execution event.
     *
     */
    public interface ExecutionEvent {
    
        /**
         * The possible types of execution events.
         */
        enum Type {
            ProjectDiscoveryStarted,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/c/tf_buffer.h

    #include <stddef.h>
    
    #include "tensorflow/c/c_api_macros.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // --------------------------------------------------------------------------
    // TF_Buffer holds a pointer to a block of data and its associated length.
    // Typically, the data consists of a serialized protocol buffer, but other data
    // may also be held in a buffer.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. internal/config/server.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package config
    
    // Opts holds MinIO configuration options
    type Opts struct {
    	FTP struct {
    		Address          string `yaml:"address"`
    		PassivePortRange string `yaml:"passive-port-range"`
    	} `yaml:"ftp"`
    	SFTP struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    // are the configuration of the bootstrap token and all the setting which are specific to the node where kubeadm
    // is executed, including:
    //
    // - NodeRegistration, that holds fields that relate to registering the new node to the cluster;
    // use it to customize the node name, the CRI socket to use or any other settings that should apply to this
    // node only (e.g. the node ip).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. pkg/version/cobra.go

    // limitations under the License.
    
    package version
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"sort"
    	"strings"
    
    	"github.com/spf13/cobra"
    	"sigs.k8s.io/yaml"
    )
    
    // Version holds info for client and control plane versions
    type Version struct {
    	ClientVersion    *BuildInfo   `json:"clientVersion,omitempty" yaml:"clientVersion,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    limitations under the License.
    */
    
    package volumebinding
    
    import (
    	"math"
    
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    )
    
    // classResourceMap holds a map of storage class to resource.
    type classResourceMap map[string]*StorageResource
    
    // volumeCapacityScorer calculates the score based on class storage resource information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor.go

    type KustomizeVisitor struct {
    	mapper *mapper
    	schema ContentValidator
    	// Directory expected to contain a kustomization file.
    	dirPath string
    	// File system containing dirPath.
    	fSys filesys.FileSystem
    	// Holds result of kustomize build, retained for tests.
    	yml []byte
    }
    
    // Visit passes the result of a kustomize build to a StreamVisitor.
    func (v *KustomizeVisitor) Visit(fn VisitorFunc) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:40:28 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/net/http/routing_tree.go

    package http
    
    import (
    	"strings"
    )
    
    // A routingNode is a node in the decision tree.
    // The same struct is used for leaf and interior nodes.
    type routingNode struct {
    	// A leaf node holds a single pattern and the Handler it was registered
    	// with.
    	pattern *pattern
    	handler Handler
    
    	// An interior node maps parts of the incoming request to child nodes.
    	// special children keys:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    
    // APIGroupDiscovery holds information about which resources are being served for all version of the API Group.
    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/ureader.go

    	posBases []string // position bases (i.e., file names)
    	pkgs     []*types.Package
    	typs     []types.Type
    
    	// laterFns holds functions that need to be invoked at the end of
    	// import reading.
    	laterFns []func()
    
    	// ifaces holds a list of constructed Interfaces, which need to have
    	// Complete called after importing is done.
    	ifaces []*types.Interface
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top