Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for recognizers (5.09 sec)

  1. src/encoding/asn1/marshal.go

    	t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{class, tag, bodyLen, isCompound}))
    
    	return t, nil
    }
    
    // Marshal returns the ASN.1 encoding of val.
    //
    // In addition to the struct tags recognized by Unmarshal, the following can be
    // used:
    //
    //	ia5:         causes strings to be marshaled as ASN.1, IA5String values
    //	omitempty:   causes empty slices to be skipped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        args:
          - name: annotation
            type: string
          - name: kind
            type: string
    
      - name: "UnknownAnnotation"
        code: IST0108
        level: Warning
        description: "An Istio annotation is not recognized for any kind of resource"
        template: "Unknown annotation: %s"
        args:
          - name: annotation
            type: string
    
      - name: "ConflictingMeshGatewayVirtualServiceHosts"
        code: IST0109
        level: Error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/net/textproto/reader.go

    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    		}
    		a[i] = c
    		upper = c == '-' // for next time
    	}
    	commonHeaderOnce.Do(initCommonHeader)
    	// The compiler recognizes m[string(byteSlice)] as a special
    	// case, so a copy of a's bytes into a new string does not
    	// happen in this map lookup:
    	if v := commonHeader[string(a)]; v != "" {
    		return v, true
    	}
    	return string(a), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	    Write an execution trace to the specified file before exiting.
    //
    // Each of these flags is also recognized with an optional 'test.' prefix,
    // as in -test.v. When invoking the generated test binary (the result of
    // 'go test -c') directly, however, the prefix is mandatory.
    //
    // The 'go test' command rewrites or removes recognized flags,
    // as appropriate, both before and after the optional package list,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	//
    	// Deprecated:
    	// The supported way to create a compiled-only package is to
    	// write source code containing a //go:binary-only-package comment at
    	// the top of the file. Such a package will be recognized
    	// regardless of this flag setting (because it has source code)
    	// and will have BinaryOnly set to true in the returned Package.
    	AllowBinary
    
    	// If ImportComment is set, parse import comments on package statements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    				each.in = []byte{byte(0xe0) | byte(i)}
    			} else {
    				// larger simple values encode to two bytes
    				each.in = []byte{byte(0xe0) | byte(24), byte(i)}
    			}
    			switch i {
    			case 20, 21, 22, 23: // recognized values with explicit cases
    				continue
    			case 24, 25, 26, 27, 28, 29, 30, 31: // reserved
    				// these are considered not well-formed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    		if err != nil {
    			return m, err
    		}
    		if matched {
    			m = append(m, filepath.Join(dir, n))
    		}
    	}
    	return
    }
    
    // hasMeta reports whether path contains any of the magic characters
    // recognized by filepath.Match.
    func hasMeta(path string) bool {
    	magicChars := `*?[`
    	if runtime.GOOS != "windows" {
    		magicChars = `*?[\`
    	}
    	return strings.ContainsAny(path, magicChars)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package demangle defines functions that demangle GCC/LLVM
    // C++ and Rust symbol names.
    // This package recognizes names that were mangled according to the C++ ABI
    // defined at http://codesourcery.com/cxx-abi/ and the Rust ABI
    // defined at
    // https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    	// ABIs.
    	ABIInternal
    
    	ABICount
    )
    
    // ParseABI converts from a string representation in 'abistr' to the
    // corresponding ABI value. Second return value is TRUE if the
    // abi string is recognized, FALSE otherwise.
    func ParseABI(abistr string) (ABI, bool) {
    	switch abistr {
    	default:
    		return ABI0, false
    	case "ABI0":
    		return ABI0, true
    	case "ABIInternal":
    		return ABIInternal, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top