Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Usages (0.63 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Specifies the docker hub for Istio images.
    	Hub string `protobuf:"bytes,12,opt,name=hub,proto3" json:"hub,omitempty"`
    	// Specifies the image pull policy for the Istio images. one of Always, Never, IfNotPresent.
    	// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated.
    	//
    	// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Description: "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    								Schema: &spec.Schema{
    									SchemaProps: spec.SchemaProps{
    										Default: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1_NodeSystemInfo_To_core_NodeSystemInfo(&in.NodeInfo, &out.NodeInfo, s); err != nil {
    		return err
    	}
    	out.Images = *(*[]core.ContainerImage)(unsafe.Pointer(&in.Images))
    	out.VolumesInUse = *(*[]core.UniqueVolumeName)(unsafe.Pointer(&in.VolumesInUse))
    	out.VolumesAttached = *(*[]core.AttachedVolume)(unsafe.Pointer(&in.VolumesAttached))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    // IsValidSysctlName checks that the given string is a valid sysctl name,
    // i.e. matches SysctlContainSlashFmt.
    // More info:
    //
    //	https://man7.org/linux/man-pages/man8/sysctl.8.html
    //	https://man7.org/linux/man-pages/man5/sysctl.d.5.html
    func IsValidSysctlName(name string) bool {
    	if len(name) > SysctlMaxLength {
    		return false
    	}
    	return sysctlContainSlashRegexp.MatchString(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssagen
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"go/constant"
    	"html"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="#EXTM3U" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/vnd.apple.pages">
        <root-XML localName="document" namespaceURI="http://developer.apple.com/namespaces/sl" />
        <sub-class-of type="application/vnd.apple.iwork" />
        <glob pattern="*.pages"/>
      </mime-type>
      <mime-type type="application/vnd.apple.numbers">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top