Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for z0 (0.02 sec)

  1. hack/verify-openapi-docs-urls.sh

    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
      grep -oE '"description": ".*",?$' "$full_repo_path" | grep -oE 'https?:\/\/[-a-zA-Z0-9._+]{1,256}\.[a-zA-Z0-9]{1,6}\b([-a-zA-Z0-9:%_+.~&/=]*[a-zA-Z0-9])' >> "${TMP_URLS}" || true
    done
    sort -u "${TMP_URLS}" -o "${TMP_URLS}"
    
    RESULT=0
    while read -r URL; do
      if ! curl --head --location --fail --silent "$URL" > /dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/config/labels/instance.go

    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    )
    
    const (
    	DNS1123LabelMaxLength = 63 // Public for testing only.
    	dns1123LabelFmt       = "[a-zA-Z0-9](?:[-a-zA-Z0-9]*[a-zA-Z0-9])?"
    	// a wild-card prefix is an '*', a normal DNS1123 label with a leading '*' or '*-', or a normal DNS1123 label
    	wildcardPrefix = `(\*|(\*|\*-)?` + dns1123LabelFmt + `)`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/functionalize-if.mlir

    // CHECK: func @main()
    // CHECK: computation = @[[FUNCTIONALIZE_FUNC:[A-Za-z0-9_]*]]
    
    
    // In the newly cloned function, check that we have a _tf.If operation and capture the then and else branch.
    // CHECK: func private @[[FUNCTIONALIZE_FUNC]]
    // CHECK: "tf.If"
    // CHECK-SAME:  else_branch = @[[ELSE_FUNC:[A-Za-z0-9_]*]]
    // CHECK-SAME:  then_branch = @[[THEN_FUNC:[A-Za-z0-9_]*]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/templates/root-project/checkstyle.xml

            <module name="PackageName">
                <property name="format" value="^[a-z]+(\\.[a-z][a-z0-9_]*)*\$"/>
            </module>
            <module name="ParameterName"/>
            <module name="StaticVariableName"/>
            <module name="TypeName">
                <property name="format" value="^[A-Z][a-zA-Z0-9_]*\$"/>
            </module>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 856 bytes
    - Viewed (0)
  5. src/net/lookup_windows_test.go

    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		ns = append(ns, &NS{absDomainName(ans[2])})
    	}
    	return
    }
    
    func nslookupCNAME(name string) (cname string, err error) {
    	var r string
    	if r, err = nslookup("cname", name); err != nil {
    		return
    	}
    	// mail.golang.com canonical name = golang.org.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pkg/kubelet/util/store/store.go

    limitations under the License.
    */
    
    package store
    
    import (
    	"fmt"
    	"regexp"
    )
    
    const (
    	keyMaxLength = 250
    
    	keyCharFmt      string = "[A-Za-z0-9]"
    	keyExtCharFmt   string = "[-A-Za-z0-9_.]"
    	qualifiedKeyFmt string = "(" + keyCharFmt + keyExtCharFmt + "*)?" + keyCharFmt
    )
    
    var (
    	// Key must consist of alphanumeric characters, '-', '_' or '.', and must start
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 22:18:30 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh

    COMMAND="mksysnum_plan9.sh $@"
    
    cat <<EOF
    // $COMMAND
    // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
    
    package plan9
    
    const(
    EOF
    
    SP='[ 	]' # space or tab
    sed "s/^#define${SP}\\([A-Z0-9_][A-Z0-9_]*\\)${SP}${SP}*\\([0-9][0-9]*\\)/SYS_\\1=\\2/g" \
    	< $1 | grep -v SYS__
    
    cat <<EOF
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 459 bytes
    - Viewed (0)
  8. src/syscall/mksysnum_plan9.sh

    COMMAND="mksysnum_plan9.sh $@"
    
    cat <<EOF
    // $COMMAND
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const(
    EOF
    
    SP='[ 	]' # space or tab
    sed "s/^#define${SP}\\([A-Z0-9_][A-Z0-9_]*\\)${SP}${SP}*\\([0-9][0-9]*\\)/SYS_\\1=\\2/g" \
    	< $1 | grep -v SYS__
    
    cat <<EOF
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 459 bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsRootFileSystemTest.groovy

        }
    
        private getRootProjectNamePattern() {
            if(OperatingSystem.current().isWindows()) {
                return 'generated-[a-zA-Z]-[a-z0-9]{6}'
            }
            return 'generated-[a-z0-9]{6}'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 01 18:57:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/device-arg-retval-attr.pbtxt

    # Verify arg and ret devices are added as arg and ret attributes.
    
    # CHECK-LABEL: func @main
    # CHECK-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<*xf32> {tf.device = "/CPU:0"}, %[[ARG_1:[a-z0-9]+]]: tensor<2x4x6x8xi32>) -> (tensor<*xf32>, tensor<*xi32> {tf.device = "/CPU:1"})
    
    node {
      name: "args_0"
      op: "_Arg"
      device: "/CPU:0"
      attr {
        key: "T"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 07 17:45:22 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top