Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for farm (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/\u003cgroup\u003e/\u003cversion\u003e/.../\u003cplural\u003e`. Must match the name of the CustomResourceDefinition (in the form `\u003cnames.plural\u003e.\u003cgroup\u003e`). Must be all lowercase.",
              "type": "string",
              "default": ""
            },
            "shortNames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    	specPath := field.NewPath("spec")
    	// maxLengthSignerName is a signerName that is of maximum length, utilising
    	// the max length specifications defined in validation.go.
    	// It is of the form <fqdn(253)>/<resource-namespace(63)>.<resource-name(253)>
    	maxLengthFQDN := fmt.Sprintf("%s.%s.%s.%s", repeatString("a", 63), repeatString("a", 63), repeatString("a", 63), repeatString("a", 61))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. src/time/time.go

    	Second               = 1000 * Millisecond
    	Minute               = 60 * Second
    	Hour                 = 60 * Minute
    )
    
    // String returns a string representing the duration in the form "72h3m0.5s".
    // Leading zero units are omitted. As a special case, durations less than one
    // second format use a smaller unit (milli-, micro-, or nanoseconds) to ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    		return nil, &Error{ErrMissingParen, s}
    	}
    	return p.stack[0], nil
    }
    
    // parseRepeat parses {min} (max=min) or {min,} (max=-1) or {min,max}.
    // If s is not of that form, it returns ok == false.
    // If s has the right form but the values are too big, it returns min == -1, ok == true.
    func (p *parser) parseRepeat(s string) (min, max int, rest string, ok bool) {
    	if s == "" || s[0] != '{' {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

            openapi_examples=openapi_examples,
            deprecated=deprecated,
            include_in_schema=include_in_schema,
            json_schema_extra=json_schema_extra,
            **extra,
        )
    
    
    def Form(  # noqa: N802
        default: Annotated[
            Any,
            Doc(
                """
                Default value if the parameter field is not set.
                """
            ),
        ] = Undefined,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

                  communities:
                    description: The BGP communities to be associated with the announcement.
                      Each item can be a standard community of the form 1234:1234, a large
                      community of the form large:1234:1234:1234 or the name of an alias
                      defined in the Community CRD.
                    items:
                      type: string
                    type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    func (p *Package) gccMachine() []string {
    	switch goarch {
    	case "amd64":
    		if goos == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "386":
    		return []string{"-m32"}
    	case "arm":
    		return []string{"-marm"} // not thumb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    === Using `CopySpec.expand()`
    
    The `expand()` method treats the source files as https://docs.groovy-lang.org/latest/html/api/groovy/text/SimpleTemplateEngine.html[Groovy templates], which evaluates and expands expressions of the form `${expression}.`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    )
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the local machine.
    func CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {
    	return CreateWellKnownDomainSid(sidType, nil)
    }
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the domain specified by the domainSid parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    		return typ
    	}
    
    	p.exprLev++
    	body := p.parseBody(scope)
    	p.exprLev--
    
    	return &ast.FuncLit{typ, body}
    }
    
    // parseOperand may return an expression or a raw type (incl. array
    // types of the form [...]T. Callers must verify the result.
    // If lhs is set and the result is an identifier, it is not resolved.
    func (p *parser) parseOperand(lhs bool) ast.Expr {
    	if p.trace {
    		defer un(trace(p, "Operand"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top