Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for extraValue (0.2 sec)

  1. staging/src/k8s.io/api/certificates/v1/generated.proto

      //     )
      //
      // +listType=atomic
      // +optional
      optional bytes certificate = 2;
    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		}
    
    		extraValues, err := convertCELValueToStringList(result.EvalResult)
    		if err != nil {
    			return nil, fmt.Errorf("oidc: error evaluating extra claim expression: %s: %w", extraMapping.Expression, err)
    		}
    
    		if len(extraValues) == 0 {
    			continue
    		}
    
    		extra[extraMapping.Key] = extraValues
    	}
    
    	return extra, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top