Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,900 for holds (0.08 sec)

  1. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    // }
    
    #define TP_MAJOR 0
    #define TP_MINOR 0
    #define TP_PATCH 1
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // --------------------------------------------------------------------------
    // TP_Profiler holds a pointer to device type filed by the plug-in.
    typedef struct TP_Profiler {
      size_t struct_size;
      void* ext;  // free-form data set by plugin.
      const char* device_type;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  2. pkg/kubelet/util/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package util holds utility functions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 07:23:07 UTC 2019
    - 672 bytes
    - Viewed (0)
  3. pkg/kubeapiserver/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kubeapiserver holds code that is common to both the kube-apiserver
    // and the federation-apiserver, but isn't part of a generic API server.
    // For instance, the non-delegated authorization options are used by those two
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 19:25:32 UTC 2019
    - 884 bytes
    - Viewed (0)
  4. pkg/routes/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package routes holds a collection of optional master http handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 11:22:45 UTC 2016
    - 657 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    // ClusterConfiguration contains cluster-wide configuration for a kubeadm cluster
    type ClusterConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Etcd holds configuration for etcd.
    	// +optional
    	Etcd Etcd `json:"etcd,omitempty"`
    
    	// Networking holds configuration for the networking topology of the cluster.
    	// +optional
    	Networking Networking `json:"networking,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/config/types.go

    type PersistentVolumeBinderControllerConfiguration struct {
    	// pvClaimBinderSyncPeriod is the period for syncing persistent volumes
    	// and persistent volume claims.
    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    // VolumeConfiguration contains *all* enumerated flags meant to configure all volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated",
    	"status":   "Status is filled in by the server and indicates whether the token can be authenticated.",
    }
    
    func (TokenRequest) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/apidiscovery/v2";
    
    // 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 Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/daemonsetcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	daemonconfig "k8s.io/kubernetes/pkg/controller/daemon/config"
    )
    
    // DaemonSetControllerOptions holds the DaemonSetController options.
    type DaemonSetControllerOptions struct {
    	*daemonconfig.DaemonSetControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. internal/config/lambda/config.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package lambda
    
    import "github.com/minio/minio/internal/event/target"
    
    // Config - lambda target configuration structure, holds
    // information about various lambda targets.
    type Config struct {
    	Webhook map[string]target.WebhookArgs `json:"webhook"`
    }
    
    const (
    	defaultTarget = "1"
    )
    
    // NewConfig - initialize lambda config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top