Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,813 for Leading (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name_test.go

    			Prefix:      false,
    			ExpectedMsg: ".",
    		},
    		"dot leading": {
    			Name:        ".test",
    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    		"dot,prefix": {
    			Name:        ".",
    			Prefix:      true,
    			ExpectedMsg: "",
    		},
    
    		"dot dot": {
    			Name:        "..",
    			Prefix:      false,
    			ExpectedMsg: "..",
    		},
    		"dot dot leading": {
    			Name:        "..test",
    			Prefix:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:49:29 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  2. hack/verify-netparse-cve.sh

        \) -name '*.go'
    }
    
    # find files using net.ParseIP()
    netparseip_matches=$(find_files | xargs grep -nE "net.ParseIP\(.*\)" 2>/dev/null) || true
    if [[ -n "${netparseip_matches}" ]]; then
      echo "net.ParseIP reject leading zeros in the dot-decimal notation of IPv4 addresses since golang 1.17:" >&2
      echo "${netparseip_matches}" >&2
      echo >&2
      echo "Use k8s.io/utils/net ParseIPSloppy() to parse IP addresses. Kubernetes #100895" >&2
      echo >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // The byte sequence is followed by a trailing and leading CCC if the values
    // for these are not zero.  The value of v determines which ccc are appended
    // to the sequences.  For v < firstCCC, there are none, for v >= firstCCC,
    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. test/fixedbugs/bug442.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to crash generating hash and == functions for struct
    // with leading _ field.  Issue 3607.
    
    package main
    
    type T struct {
    	_ int
    	X interface{}
    	_ string
    	Y float64
    }
    
    func main() {
    	m := map[T]int{}
    	m[T{X: 1, Y: 2}] = 1
    	m[T{X: 2, Y: 3}] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 509 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // The byte sequence is followed by a trailing and leading CCC if the values
    // for these are not zero.  The value of v determines which ccc are appended
    // to the sequences.  For v < firstCCC, there are none, for v >= firstCCC,
    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen_test.cc

      ExpectErrorContains(ValidateCppIdent(" ", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("0", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(".", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(":", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("a.", ""), "illegal char");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_test_cycle.txt

    # https://golang.org/issue/45863: a typo in a test package leading to an
    # import cycle should be diagnosed, instead of causing an infinite loop.
    # The failure mode of this test prior to the fix was a timeout or OOM crash.
    
    go list -e -test -deps ./datastore/sql
    
    -- go.mod --
    module golang.org/issue45863
    
    go 1.17
    -- datastore/datastore_health.go --
    package datastore
    
    import (
    	"golang.org/issue45863/datastore"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 24 02:25:23 UTC 2021
    - 582 bytes
    - Viewed (0)
  8. test/fixedbugs/bug479.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo was not consistent in deciding how to compare a struct type
    // for equality, leading to an undefined symbol at link time.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  9. src/os/env_test.go

    // On Windows, Environ was observed to report keys with a single leading "=".
    // Check that they are properly reported by LookupEnv and can be set by SetEnv.
    // See https://golang.org/issue/49886.
    func TestEnvironConsistency(t *testing.T) {
    	t.Parallel()
    
    	for _, kv := range Environ() {
    		i := strings.Index(kv, "=")
    		if i == 0 {
    			// We observe in practice keys with a single leading "=" on Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue7405.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7405: the equality function for struct with many
    // embedded fields became more complex after fixing issue 7366,
    // leading to out of registers on 386.
    
    package p
    
    type T1 struct {
    	T2
    	T3
    	T4
    }
    
    type T2 struct {
    	Conn
    }
    
    type T3 struct {
    	PacketConn
    }
    
    type T4 struct {
    	PacketConn
    	T5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 20 21:22:37 UTC 2014
    - 638 bytes
    - Viewed (0)
Back to top