Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 123 for nul (0.02 sec)

  1. src/crypto/x509/root_windows.go

    		case syscall.CERT_E_UNTRUSTEDROOT:
    			return UnknownAuthorityError{c, nil, nil}
    		default:
    			return UnknownAuthorityError{c, nil, nil}
    		}
    	}
    
    	return nil
    }
    
    // windowsExtKeyUsageOIDs are the C NUL-terminated string representations of the
    // OIDs for use with the Windows API.
    var windowsExtKeyUsageOIDs = make(map[ExtKeyUsage][]byte, len(extKeyUsageOIDs))
    
    func init() {
    	for _, eku := range extKeyUsageOIDs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path_windows.go

    		return true
    	}
    	return false
    }
    
    func isReservedBaseName(name string) bool {
    	if len(name) == 3 {
    		switch string([]byte{toUpper(name[0]), toUpper(name[1]), toUpper(name[2])}) {
    		case "CON", "PRN", "AUX", "NUL":
    			return true
    		}
    	}
    	if len(name) >= 4 {
    		switch string([]byte{toUpper(name[0]), toUpper(name[1]), toUpper(name[2])}) {
    		case "COM", "LPT":
    			if len(name) == 4 && '1' <= name[3] && name[3] <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    }
    
    namespace internal {
    
    // Converts a streamable value to an std::string.  A NULL pointer is
    // converted to "(null)".  When the input value is a ::string,
    // ::std::string, ::wstring, or ::std::wstring object, each NUL
    // character in it is replaced with "\\0".
    template <typename T>
    std::string StreamableToString(const T& streamable) {
      return (Message() << streamable).GetString();
    }
    
    }  // namespace internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    }
    
    namespace internal {
    
    // Converts a streamable value to an std::string.  A NULL pointer is
    // converted to "(null)".  When the input value is a ::string,
    // ::std::string, ::wstring, or ::std::wstring object, each NUL
    // character in it is replaced with "\\0".
    template <typename T>
    std::string StreamableToString(const T& streamable) {
      return (Message() << streamable).GetString();
    }
    
    }  // namespace internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		sa.raw.Path[i] = int8(name[i])
    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/go/scanner/scanner_test.go

    	{`"` + "abc\ufeffdef" + `"`, token.STRING, 4, `"` + "abc\ufeffdef" + `"`, "illegal byte order mark"}, // only first BOM is ignored
    	{"abc\x00def", token.IDENT, 3, "abc", "illegal character NUL"},
    	{"abc\x00", token.IDENT, 3, "abc", "illegal character NUL"},
    	{"“abc”", token.ILLEGAL, 0, "abc", `curly quotation mark '“' (use neutral '"')`},
    }
    
    func TestScanErrors(t *testing.T) {
    	for _, e := range errors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    		sa.raw.Path[i] = int8(name[i])
    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  8. cluster/gce/windows/testonly/install-ssh.psm1

      # another one.
      $write_keys_process = Start-Process `
          -FilePath "powershell.exe" `
          -ArgumentList @("-Command", ${WRITE_SSH_KEYS_SCRIPT}) `
          -WindowStyle Hidden -PassThru `
          -RedirectStandardOutput "NUL" `
          -RedirectStandardError C:\write-ssh-keys.err
      Log-Output "Started background process to write SSH keys"
      Log-Output "$(${write_keys_process} | Out-String)"
    }
    
    # Export all public functions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build_read.go

    func isIdent(c byte) bool {
    	return 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c >= utf8.RuneSelf
    }
    
    var (
    	errSyntax = errors.New("syntax error")
    	errNUL    = errors.New("unexpected NUL in input")
    )
    
    // syntaxError records a syntax error, but only if an I/O error has not already been recorded.
    func (r *importReader) syntaxError() {
    	if r.err == nil {
    		r.err = errSyntax
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    // It takes an io.Reader providing the source, which then can be tokenized
    // through repeated calls to the Scan function. For compatibility with
    // existing tools, the NUL character is not allowed. If the first character
    // in the source is a UTF-8 encoded byte order mark (BOM), it is discarded.
    //
    // By default, a [Scanner] skips white space and Go comments and recognizes all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top