Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 337 for z0 (0.03 sec)

  1. internal/arn/arn.go

    	ResourceType string
    	ResourceID   string
    }
    
    // Allows english letters, numbers, '.', '-', '_' and '/'. Starts with a
    // letter or digit. At least 1 character long.
    var validResourceIDRegex = regexp.MustCompile(`[A-Za-z0-9_/\.-]+$`)
    
    // NewIAMRoleARN - returns an ARN for a role in MinIO.
    func NewIAMRoleARN(resourceID, serverRegion string) (ARN, error) {
    	if !validResourceIDRegex.MatchString(resourceID) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function.pbtxt

    # CHECK:          %[[ISLAND_2:.*]], %[[ISLAND_2_control:.*]] = tf_executor.island wraps "tf.StatefulPartitionedCall"
    # CHECK-SAME:       f = @[[FUNC:[a-z0-9]*]]
    # CHECK:          tf_executor.fetch %[[ISLAND_1]], %[[ISLAND_2]] : tensor<*xf32>, tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pkg/apis/apiserverinternal/validation/validation.go

    		if condition.Message == "" {
    			allErrs = append(allErrs, field.Required(fldPath.Index(i).Child("message"), "message cannot be empty"))
    		}
    	}
    	return allErrs
    }
    
    const dns1035LabelFmt string = "[a-z]([-a-z0-9]*[a-z0-9])?"
    const dns1035LabelErrMsg string = "a DNS-1035 label, which must consist of lower case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/management/DefaultVersionCatalogBuilderContainer.java

    public class DefaultVersionCatalogBuilderContainer extends AbstractNamedDomainObjectContainer<VersionCatalogBuilder> implements MutableVersionCatalogContainer {
        private static final String VALID_EXTENSION_NAME = "[a-z]([a-zA-Z0-9])+";
        private static final Pattern VALID_EXTENSION_PATTERN = Pattern.compile(VALID_EXTENSION_NAME);
    
        private final Interner<String> strings = Interners.newStrongInterner();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 13:02:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/math/big/arith_ppc64x.s

    	MOVD    z_len+8(FP), R11  // R11 = z_len
    
    	CMP     R11, $0
    	BEQ     done
    
    	MOVD    0(R8), R20
    	ADD     $-1, R11
    	MULLD   R9, R20, R6       // R6 = z0 = Low-order(x[i]*y)
    	MULHDU  R9, R20, R7       // R7 = z1 = High-order(x[i]*y)
    	ADDC    R4, R6            // R6 = z0 + r
    	ADDZE   R7, R4            // R4 = z1 + CA
    	CMP     R11, $0
    	MOVD    R6, 0(R10)        // z[i]
    	BEQ     done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. src/math/bits/bits_test.go

    }
    
    func BenchmarkAdd64multiple(b *testing.B) {
    	var z0 = uint64(Input)
    	var z1 = uint64(Input)
    	var z2 = uint64(Input)
    	var z3 = uint64(Input)
    	for i := 0; i < b.N; i++ {
    		var c uint64
    		z0, c = Add64(z0, uint64(i), c)
    		z1, c = Add64(z1, uint64(i), c)
    		z2, c = Add64(z2, uint64(i), c)
    		z3, _ = Add64(z3, uint64(i), c)
    	}
    	Output = int(z0 + z1 + z2 + z3)
    }
    
    func BenchmarkSub(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/extensions/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
    - 45.6K bytes
    - Viewed (0)
  9. src/regexp/syntax/simplify_test.go

    	{`[A-Za-zA-Za-z]`, `[A-Za-z]`},
    	{`[ABCDEFGH]`, `[A-H]`},
    	{`[AB-CD-EF-GH]`, `[A-H]`},
    	{`[W-ZP-XE-R]`, `[E-Z]`},
    	{`[a-ee-gg-m]`, `[a-m]`},
    	{`[a-ea-ha-m]`, `[a-m]`},
    	{`[a-ma-ha-e]`, `[a-m]`},
    	{`[a-zA-Z0-9 -~]`, `[ -~]`},
    
    	// Empty character classes
    	{`[^[:cntrl:][:^cntrl:]]`, `[^\x00-\x{10FFFF}]`},
    
    	// Full character classes
    	{`[[:cntrl:][:^cntrl:]]`, `(?s:.)`},
    
    	// Unicode case folding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPlugin.java

        public static final String PUBLISH_TASK_GROUP = "publishing";
        public static final String PUBLISH_LIFECYCLE_TASK_NAME = "publish";
        private static final String VALID_NAME_REGEX = "[A-Za-z0-9_\\-.]+";
    
        private final Instantiator instantiator;
        private final ArtifactPublicationServices publicationServices;
        private final ProjectPublicationRegistry projectPublicationRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top