Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for _token_name (0.29 sec)

  1. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    	_ = x[_Struct-43]
    	_ = x[_Switch-44]
    	_ = x[_Type-45]
    	_ = x[_Var-46]
    	_ = x[tokenCount-47]
    }
    
    const _token_name = "EOFnameliteralopop=opop=:=<-*([{)]},;:....breakcasechanconstcontinuedefaultdeferelsefallthroughforfuncgogotoifimportinterfacemappackagerangereturnselectstructswitchtypevar"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner.go

    	s.tok = _Name
    }
    
    // tokStrFast is a faster version of token.String, which assumes that tok
    // is one of the valid tokens - and can thus skip bounds checks.
    func tokStrFast(tok token) string {
    	return _token_name[_token_index[tok-1]:_token_index[tok]]
    }
    
    func (s *scanner) atIdentChar(first bool) bool {
    	switch {
    	case unicode.IsLetter(s.ch) || s.ch == '_':
    		// ok
    	case unicode.IsDigit(s.ch):
    		if first {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

            try {
                final String tokenName = getParameter(TOKEN_NAME);
                final String content = new String(InputStreamUtil.getBytes(entity.getContent()), Constants.UTF_8_CHARSET);
                final String tokenValue = getTokenValue(tokenPattern, content);
                if (StringUtil.isNotBlank(tokenValue)) {
                    responseParams.add(new Pair<>(tokenName, tokenValue));
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/serviceaccount/admission_test.go

    	ns := "myns"
    	serviceAccountName := DefaultServiceAccountName
    	serviceAccountUID := "12345"
    
    	tokenName := generatedVolumeName
    
    	expectedVolume := api.Volume{
    		Name: tokenName,
    		VolumeSource: api.VolumeSource{
    			Projected: TokenVolumeSource(),
    		},
    	}
    	expectedVolumeMount := api.VolumeMount{
    		Name:      tokenName,
    		ReadOnly:  true,
    		MountPath: DefaultAPITokenMountPath,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Note that both variants assume the source files are text-based.
    When you use the `ReplaceTokens` class with `filter()`, you create a template engine that replaces tokens of the form `@tokenName@` (the Ant-style token) with values you define.
    
    === Using `CopySpec.expand()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top