Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Usages (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top