Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for z0 (0.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      - message: Hostname value must only contain valid characters (matching
                          ^(\*\.)?[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$)
                        rule: 'self.type == ''Hostname'' ? self.value.matches(r"""^(\*\.)?[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$"""):
                          true'
                    maxItems: 16
                    type: array
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // tf.GatherV2 legalization
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: @gather_v2
    //  CHECK-SAME: %[[PARAMS:[a-zA-Z0-9_]+]]
    //  CHECK-SAME: %[[INDICES:[a-zA-Z0-9_]+]]
    func.func @gather_v2(%params: tensor<16x2x3xf32>, %indices: tensor<16x5xi32>) -> tensor<16x2x5xf32> {
      //      CHECK: mhlo.torch_index_select
      // CHECK-SAME:   %[[PARAMS]], %[[INDICES]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// ---
    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +optional
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
    	// +kubebuilder:validation:MaxLength=316
    	Error *string
    }
    
    // LoadBalancerIPMode represents the mode of the LoadBalancer ingress IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +optional
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// ---
    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +optional
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
    	// +kubebuilder:validation:MaxLength=316
    	Error *string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                      or "false" will force the feature, empty or omitted values are auto-detected.
                    pattern: ^([a-zA-Z0-9-_]+=(true|false|),)*([a-zA-Z0-9-_]+=(true|false|))?$
                    type: string
                  featureGates:
                    description: FeatureGates is used to enable or disable tech-preview
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			return false
    		}
    		return true
    	})
    	return hasContainer
    }
    
    const (
    	// a sysctl segment regex, concatenated with dots to form a sysctl name
    	SysctlSegmentFmt string = "[a-z0-9]([-_a-z0-9]*[a-z0-9])?"
    
    	// a sysctl name regex with slash allowed
    	SysctlContainSlashFmt string = "(" + SysctlSegmentFmt + "[\\./])*" + SysctlSegmentFmt
    
    	// the maximal length of a sysctl 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)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-SAME:                                       %[[VAL_1:[a-z0-9]*]]: tensor<1x1x100xf32>,
    // CHECK-SAME:                                       %[[VAL_2:[a-z0-9]*]]: tensor<i32>,
    // CHECK-SAME:                                       %[[VAL_3:[a-z0-9]*]]: tensor<i32>,
    // CHECK-SAME:                                       %[[VAL_4:[a-z0-9]*]]: tensor<i32>) -> tensor<28x1x100xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "name",
              "expression"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
Back to top