Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,960 for usedBy (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    When using the runner as part of tests _being executed by Gradle_ (e.g. executing the `test` task of a plugin project), the same distribution used to execute the tests will be used by the runner. When using the runner as part of tests _being executed by an IDE_, the same distribution of Gradle that was used when importing the project will be used. This means that the plugin will effectively be tested with the same version of Gradle that it is being built with.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types.go

    	// Server should be accessed without verifying the TLS certificate. For testing only.
    	Insecure bool
    	// ServerName is passed to the server for SNI and is used in the client to check server
    	// certificates against. If ServerName is empty, the hostname used to contact the
    	// server is used.
    	ServerName string
    
    	// Server requires TLS client certificate authentication
    	CertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    option go_package = "k8s.io/api/policy/v1beta1";
    
    // AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.
    message AllowedCSIDriver {
      // Name is the registered name of the CSI driver
      optional string name = 1;
    }
    
    // AllowedFlexVolume represents a single Flexvolume that is allowed to be used.
    message AllowedFlexVolume {
      // driver is the name of the Flexvolume driver.
      optional string driver = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    	// to ListImages() by the container runtime, only imageID will be used as
    	// the index of this map.
    	imageRecords     map[string]*imageRecord
    	imageRecordsLock sync.Mutex
    
    	// The image garbage collection policy in use.
    	policy ImageGCPolicy
    
    	// statsProvider provides stats used during image garbage collection.
    	statsProvider StatsProvider
    
    	// Recorder for Kubernetes events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    type NodeType string
    
    const (
    	// SidecarProxy type is used for sidecar proxies in the application containers
    	SidecarProxy NodeType = "sidecar"
    
    	// Router type is used for standalone proxies acting as L7/L4 routers
    	Router NodeType = "router"
    
    	// Waypoint type is used for waypoint proxies
    	Waypoint NodeType = "waypoint"
    
    	// Ztunnel type is used for node proxies (ztunnel)
    	Ztunnel NodeType = "ztunnel"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    }
    
    // TrackStorageLatency is used to track latency incurred
    // inside the underlying storage layer.
    // When called multiple times, the latency provided will be summed up.
    func TrackStorageLatency(ctx context.Context, d time.Duration) {
    	if tracker, ok := LatencyTrackersFrom(ctx); ok {
    		tracker.StorageTracker.TrackDuration(d)
    	}
    }
    
    // TrackSerializeResponseObjectLatency is used to track latency incurred in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/types.go

    	// from kube-ipvs0 interface
    	StrictARP bool
    	// tcpTimeout is the timeout value used for idle IPVS TCP sessions.
    	// The default value is 0, which preserves the current timeout value on the system.
    	TCPTimeout metav1.Duration
    	// tcpFinTimeout is the timeout value used for IPVS TCP sessions after receiving a FIN.
    	// The default value is 0, which preserves the current timeout value on the system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    }
    
    // GraphemeJoiner is inserted after maxNonStarters non-starter runes.
    const GraphemeJoiner = "\u034F"
    
    // reorderBuffer is used to normalize a single segment.  Characters inserted with
    // insert are decomposed and reordered based on CCC. The compose method can
    // be used to recombine characters.  Note that the byte buffer does not hold
    // the UTF-8 characters in order.  Only the rune array is maintained in sorted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/branches.go

    		if l := ls.labels[name]; l != nil {
    			l.used = true // avoid "defined and not used" error
    			ls.err(fwd.Label.Pos(), "goto %s jumps into block starting at %s", name, l.parent.start)
    		} else {
    			ls.err(fwd.Label.Pos(), "label %s not defined", name)
    		}
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for _, l := range ls.labels {
    		if !l.used {
    			l := l.lstmt.Label
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        GradleExecuter withJavaHome(String userHomeDir);
    
        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(File userHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top