Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 337 for z0 (0.06 sec)

  1. operator/pkg/validate/common.go

    	// repository name to start with a component as defined by DomainRegexp
    	// and followed by an optional port.
    	domainComponentRegexp = match(`(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])`)
    
    	// DomainRegexp defines the structure of potential domain components
    	// that may be part of image names. This is purposely a subset of what is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    		Long: dedent.Dedent(`
    			This command will delete a list of bootstrap tokens for you.
    
    			The [token-value] is the full Token of the form "[a-z0-9]{6}.[a-z0-9]{16}" or the
    			Token ID of the form "[a-z0-9]{6}" to delete.
    		`),
    		RunE: func(tokenCmd *cobra.Command, args []string) error {
    			if len(args) < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    var validCompilerFlags = []*lazyregexp.Regexp{
    	re(`-D([A-Za-z_][A-Za-z0-9_]*)(=[^@\-]*)?`),
    	re(`-U([A-Za-z_][A-Za-z0-9_]*)`),
    	re(`-F([^@\-].*)`),
    	re(`-I([^@\-].*)`),
    	re(`-O`),
    	re(`-O([^@\-].*)`),
    	re(`-W`),
    	re(`-W([^@,]+)`), // -Wall but not -Wa,-foo.
    	re(`-Wa,-mbig-obj`),
    	re(`-Wp,-D([A-Za-z_][A-Za-z0-9_]*)(=[^@,\-]*)?`),
    	re(`-Wp,-U([A-Za-z_][A-Za-z0-9_]*)`),
    	re(`-ansi`),
    	re(`-f(no-)?asynchronous-unwind-tables`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/partial-device-name.pbtxt

      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 27
    }
    
    # CHECK-LABEL: func @main
    # CHECK-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<10xi32>, %[[ARG_1:[a-z0-9]+]]: tensor<10xi32>) -> tensor<*xi32>
    # CHECK-SAME:  control_outputs = ""
    # CHECK-SAME:  inputs = "input0,input1"
    # CHECK-SAME:  outputs = "Sub"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 26 20:48:36 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. src/math/trig_reduce.go

    	ix &^= mask << shift
    	ix |= 1 << shift
    	// Use the exponent to extract the 3 appropriate uint64 digits from mPi4,
    	// B ~ (z0, z1, z2), such that the product leading digit has the exponent -61.
    	// Note, exp >= -53 since x >= PI4 and exp < 971 for maximum float64.
    	digit, bitshift := uint(exp+61)/64, uint(exp+61)%64
    	z0 := (mPi4[digit] << bitshift) | (mPi4[digit+1] >> (64 - bitshift))
    	z1 := (mPi4[digit+1] << bitshift) | (mPi4[digit+2] >> (64 - bitshift))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_composite_resource_ops.mlir

    func.func @testReadVariableOpColocated(%arg0: tensor<*x!tf_type.resource<tensor<4xf32>>>) {
      // CHECK:      tf_device.replicate
      // CHECK-SAME: (%[[ARG0]] as %[[RI_0:[a-z0-9]*]]: tensor<*x!tf_type.resource<tensor<4xf32>>>)
      tf_device.replicate(%arg0 as %arg1: tensor<*x!tf_type.resource<tensor<4xf32>>>) {
        _mirrored_variable_indices = [0],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    // Escape escapes ident and returns a CEL identifier (of the form '[a-zA-Z_][a-zA-Z0-9_]*'), or returns
    // false if the ident does not match the supported input format of `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*`.
    // Escaping Rules:
    //   - '__' escapes to '__underscores__'
    //   - '.' escapes to '__dot__'
    //   - '-' escapes to '__dash__'
    //   - '/' escapes to '__slash__'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

      // CHECK: output_sharding_configuration
      // CHECK-SAME: ["\0A\0B\0C", "\0D\0E\0F"]
      func.return
    }
    
    // CHECK-LABEL: func @func_with_sharding
    // CHECK-SAME: (%{{[a-z0-9]+}}: tensor<*xi32> {mhlo.sharding = "\01\02\03"}, %{{[a-z0-9]+}}: tensor<*xi1> {mhlo.sharding = "\04\05\06"})
    // CHECK-SAME: -> (tensor<*xi32> {mhlo.sharding = "\0A\0B\0C"}, tensor<*xi1> {mhlo.sharding = "\0D\0E\0F"})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args.mlir

      func.return %2 : tensor<f32>
    }
    
    // -----
    
    // Tests resource write takes on value that is from an argument.
    
    // CHECK-LABEL: func @main
    // CHECK-SAME: %[[ARG_0:[a-z0-9]+]]: tensor<f32> {tf.aliasing_output = 0 : i64}
    // CHECK-SAME: %[[ARG_1:[a-z0-9]+]]: tensor<f32>
    // CHECK-SAME: -> tensor<f32>
    func.func @main(%arg0: tensor<!tf_type.resource<tensor<f32>>>, %arg1: tensor<f32>)  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1beta1/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;
    }
    
    // IngressRule represents the rules mapping the paths under a specified host to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top