Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for xoring (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    										},
    									},
    									Default: jsonPtr(map[string]interface{}{
    										"foo": int64(42),
    									}),
    								},
    								"d": {
    									Type: "object",
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"good": {
    											Type:    "string",
    											Pattern: "a",
    										},
    										"bad": {
    											Type:    "string",
    											Pattern: "b",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    func (e http2duplicatePseudoHeaderError) Error() string {
    	return fmt.Sprintf("duplicate pseudo-header %q", string(e))
    }
    
    type http2headerFieldNameError string
    
    func (e http2headerFieldNameError) Error() string {
    	return fmt.Sprintf("invalid header field name %q", string(e))
    }
    
    type http2headerFieldValueError string
    
    func (e http2headerFieldValueError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    }
    
    func GetVolumeMountMap(mounts []core.VolumeMount) map[string]string {
    	volmounts := make(map[string]string)
    
    	for _, mnt := range mounts {
    		volmounts[mnt.Name] = mnt.MountPath
    	}
    
    	return volmounts
    }
    
    func GetVolumeDeviceMap(devices []core.VolumeDevice) map[string]string {
    	volDevices := make(map[string]string)
    
    	for _, dev := range devices {
    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. prow/config/calico.yaml

                      properties:
                        action:
                          type: string
                        cidr:
                          type: string
                        interface:
                          type: string
                        matchOperator:
                          type: string
                        source:
                          type: string
                      required:
                      - action
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // For vectors, shuffle values by sorting instead of the obvious
        // Fisher-Yates algorithm. Fisher-Yates is simple to implement and correct,
        // but not easily parallelizable. For a sufficiently parallel architecture,
        // it is faster to sort many times, than Fisher-Yates shuffle once.
        if (input_rank == 1) {
          // Shuffle values by assigning each value a random key and sorting the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    When you use **FastAPI**, there's a lot more going on, processing the request and response, handling dependencies, executing **your own code**, and particularly, **waiting for the network**. But you will probably still get some nice performance improvements just from the upgrade.
    
    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. src/cmd/compile/internal/ssagen/ssa.go

    	rtabi "internal/abi"
    )
    
    var ssaConfig *ssa.Config
    var ssaCaches []ssa.Cache
    
    var ssaDump string     // early copy of $GOSSAFUNC; the func name to dump output for
    var ssaDir string      // optional destination for ssa dump file
    var ssaDumpStdout bool // whether to dump to stdout
    var ssaDumpCFG string  // generate CFGs for these phases
    const ssaDumpFile = "ssa.html"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// specified as a string as host:port pair (multiple entries are separated with commas)
    	// which acts as the central registry for volumes
    	Registry string `json:"registry" protobuf:"bytes,1,opt,name=registry"`
    
    	// volume is a string that references an already created Quobyte volume by name.
    	Volume string `json:"volume" protobuf:"bytes,2,opt,name=volume"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top