Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for displayName (0.25 sec)

  1. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                JvmVendor.openjdk.name,
                display = ParameterDisplay.PROMPT,
                description = "Java vendor to run the test with",
                options = JvmVendor.values().map { it.displayName to it.name }
            )
            text(
                testTaskOptionsParameterName,
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = true,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  2. helm/minio/templates/statefulset.yaml

                - name: MINIO_IDENTITY_OPENID_REDIRECT_URI
                  value: {{ .Values.oidc.redirectUri }}
                - name: MINIO_IDENTITY_OPENID_DISPLAY_NAME
                  value: {{ .Values.oidc.displayName }}
                {{- end }}
                {{- range $key, $val := .Values.environment }}
                - name: {{ $key }}
                  value: {{ tpl $val $ | quote }}
                {{- end }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 07:50:24 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  3. cmd/common-main.go

    		if cfg.RedirectURI != "" {
    			callback = cfg.RedirectURI
    		}
    		m[name] = consoleoauth2.ProviderConfig{
    			URL:                     cfg.URL.String(),
    			DisplayName:             cfg.DisplayName,
    			ClientID:                cfg.ClientID,
    			ClientSecret:            cfg.ClientSecret,
    			HMACSalt:                globalDeploymentID(),
    			HMACPassphrase:          cfg.ClientID,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 35.5K bytes
    - Viewed (2)
  4. src/main/resources/fess_config.properties

    ldap.attr.city=l
    ldap.attr.teletexTerminalIdentifier=teletexTerminalIdentifier
    ldap.attr.x121Address=x121Address
    ldap.attr.businessCategory=businessCategory
    ldap.attr.registeredAddress=registeredAddress
    ldap.attr.displayName=displayName
    ldap.attr.preferredLanguage=preferredLanguage
    ldap.attr.departmentNumber=departmentNumber
    ldap.attr.uidNumber=uidNumber
    ldap.attr.gidNumber=gidNumber
    ldap.attr.homeDirectory=homeDirectory
    
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. helm-releases/minio-5.2.0.tgz

    `clientSecret`` existingClientSecret: "" existingClientIdKey: "" existingClientSecret: "" claimName: "policy" scopes: "openid,profile,email" redirectUri: "https://console-endpoint-url/oauth_callback" # Can leave empty claimPrefix: "" comment: "" displayName: "" networkPolicy: enabled: false # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes) # or Cilium Network Policies (flavor: cilium) flavor: kubernetes allowExternal: true # only when using flavor: cilium...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  6. helm/minio/values.yaml

      existingClientSecretKey: ""
      claimName: "policy"
      scopes: "openid,profile,email"
      redirectUri: "https://console-endpoint-url/oauth_callback"
      # Can leave empty
      claimPrefix: ""
      comment: ""
      displayName: ""
    
    networkPolicy:
      enabled: false
      # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes)
      # or Cilium Network Policies (flavor: cilium)
      flavor: kubernetes
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. registeredAddress */
        String LDAP_ATTR_REGISTERED_ADDRESS = "ldap.attr.registeredAddress";
    
        /** The key of the configuration. e.g. displayName */
        String LDAP_ATTR_DISPLAY_NAME = "ldap.attr.displayName";
    
        /** The key of the configuration. e.g. preferredLanguage */
        String LDAP_ATTR_PREFERRED_LANGUAGE = "ldap.attr.preferredLanguage";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
Back to top