Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for testPerf (0.3 sec)

  1. pkg/apis/core/types.go

    	// kubelet's host machine and then exposed to the pod.
    	// +optional
    	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource
    	// HostPath represents a directory on the host.
    	// Provisioned by a developer or tester.
    	// This is useful for single-node development and testing only!
    	// On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
    	// +optional
    	HostPath *HostPathVolumeSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"hostPath":             "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	if x.pos >= len(x.last) {
    		x.last = append(x.last, choice{x.r.Intn(max), 0, max})
    	}
    	c := &x.last[x.pos]
    	x.pos++
    	if c.max != max {
    		panic("inconsistent use of exhaustive tester")
    	}
    	return (c.n + c.off) % max
    }
    
    func (x *exhaustive) Maybe() bool {
    	return x.Choose(2) == 1
    }
    
    func GCFunc(args []Value) []Value {
    	runtime.GC()
    	return []Value{}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional AWSElasticBlockStoreVolumeSource awsElasticBlockStore = 2;
    
      // hostPath represents a directory on the host.
      // Provisioned by a developer or tester.
      // This is useful for single-node development and testing only!
      // On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource `json:"awsElasticBlockStore,omitempty" protobuf:"bytes,2,opt,name=awsElasticBlockStore"`
    	// hostPath represents a directory on the host.
    	// Provisioned by a developer or tester.
    	// This is useful for single-node development and testing only!
    	// On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    this release is **compatibility** with Pydantic v1 and v2, to make sure your current apps keep working. Later there will be more focus on refactors, correctness, code improvements, and then **performance** improvements. Some third-party early beta testers that ran benchmarks on the beta releases of FastAPI reported improvements of **2x - 3x**. Which is not bad for just doing `pip install --upgrade fastapi pydantic`. This was not an official benchmark and I didn't check it myself, but it's a good sign....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"hostPath": {
    						SchemaProps: spec.SchemaProps{
    							Description: "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/v3/api__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource"
                  }
                ],
                "description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

            },
            "hostPath": {
              "$ref": "#/definitions/io.k8s.api.core.v1.HostPathVolumeSource",
              "description": "hostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top