Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 337 for z0 (0.07 sec)

  1. pkg/test/framework/tools/featuresgen/cmd/root.go

    		Short: "FeaturesGen generates valid test labels from a yaml file",
    		Run: func(cmd *cobra.Command, args []string) {
    			createLabelsFile()
    		},
    	}
    
    	alphanumericRegex = regexp.MustCompile(`[^a-zA-Z0-9-]`)
    	dotsRegex         = regexp.MustCompile(`[\.]`)
    	replaceDashRegex  = regexp.MustCompile(`-(.)`)
    )
    
    func Execute() {
    	if err := rootCmd.Execute(); err != nil {
    		fmt.Println("Error running featuresgen:")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multi-output-feeds.pbtxt

    #   w = tf.constant(2.0)
    #   x = tf.constant(3.0)
    #   y = tf.constant(4.0)
    #   var = tf.Variable(2.0)
    #   var_add = var.assign_add(1.0)
    #   with g.control_dependencies([var_add]):
    #     z0, z1, z2 = tf.identity_n((w, x, y))
    #
    #   a = tf.add(z1, z2)
    # ```
    
    node {
      name: "w"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

            then:
            failure.assertHasDescription "A problem occurred configuring root project 'invalid'"
            failure.assertHasCause "${invalidComponent} name 'bad:name' is not valid for publication. Must match regex [A-Za-z0-9_\\-.]+"
    
            where:
            invalidComponent | repoName    | publicationName
            "Repository"     | "bad:name"  | "mavenPub"
            "Publication"    | "mavenRepo" | "bad:name"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +required
    	// +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
    	Type string `json:"type" protobuf:"bytes,1,opt,name=type"`
    	// status of the condition, one of True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        Reason: ${kind.capitalize()} aliases must match the following regular expression: [a-z]([a-zA-Z0-9_.\\-])+.
    
        Possible solution: Make sure the alias matches the [a-z]([a-zA-Z0-9_.\\-])+ regular expression.
    
        ${documentation}"""
            }
        }
    
        static class UnexpectedFormatVersion extends InCatalog<UnexpectedFormatVersion> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        jsonFileDirectory = apiChangesJsonDirectory
    }
    
    static List<String> toPatterns(List<String> packages) {
        packages.collect {
            it.replaceAll('\\*\\*', '###')
                .replaceAll('/\\*', '/[A-Z][a-z_A-Z0-9]+')
                .replaceAll('$', '\\$')
                .replaceAll('/', '[.]')
                .replaceAll('###', '.*?')
        }
    }
    
    private String writeFilterPreset(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/regexp/syntax/doc.go

    	[[:ascii:]]    ASCII (== [\x00-\x7F])
    	[[:blank:]]    blank (== [\t ])
    	[[:cntrl:]]    control (== [\x00-\x1F\x7F])
    	[[:digit:]]    digits (== [0-9])
    	[[:graph:]]    graphical (== [!-~] == [A-Za-z0-9!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])
    	[[:lower:]]    lower case (== [a-z])
    	[[:print:]]    printable (== [ -~] == [ [:graph:]])
    	[[:punct:]]    punctuation (== [!-/:-@[-`{-~])
    	[[:space:]]    whitespace (== [\t\n\v\f\r ])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. hack/apidiff.sh

    cd "${KUBE_ROOT}"
    
    # output_name targets a target directory and prints the base name of
    # an output file for that target.
    output_name () {
        what="$1"
    
        echo "${what}" | sed -e 's/[^a-zA-Z0-9_-]/_/g' -e 's/$/.out/'
    }
    
    # run invokes apidiff once per target and stores the output
    # file(s) in the given directory.
    run () {
        out="$1"
        mkdir -p "$out"
        for d in "${targets[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmDATA      = re(`\b(DATA|GLOBL)\b`)
    	asmNamedFP   = re(`\$?([a-zA-Z0-9_\xFF-\x{10FFFF}]+)(?:\+([0-9]+))\(FP\)`)
    	asmUnnamedFP = re(`[^+\-0-9](([0-9]+)\(FP\))`)
    	asmSP        = re(`[^+\-0-9](([0-9]+)\(([A-Z0-9]+)\))`)
    	asmOpcode    = re(`^\s*(?:[A-Z0-9a-z_]+:)?\s*([A-Z]+)\s*([^,]*)(?:,\s*(.*))?`)
    	ppc64Suff    = re(`([BHWD])(ZU|Z|U|BR)?$`)
    	abiSuff      = re(`^(.+)<(ABI.+)>$`)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top