Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 444 for Holmes (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.registeredAddress = value;
        }
    
        public String[] getRoles() {
            checkSpecifiedProperty("roles");
            return roles;
        }
    
        public void setRoles(String[] value) {
            registerModifiedProperty("roles");
            this.roles = value;
        }
    
        public String getRoomNumber() {
            checkSpecifiedProperty("roomNumber");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/deployment.yaml

            # Safe since 1.22: https://github.com/kubernetes/kubernetes/pull/103326
            sysctls:
            - name: net.ipv4.ip_unprivileged_port_start
              value: "0"
          {{- end }}
          {{- with .Values.volumes }}
          volumes:
            {{ toYaml . | nindent 8 }}
          {{- end }}
          containers:
            - name: istio-proxy
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/exbhv/UserBhv.java

    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class UserBhv extends BsUserBhv {
    
        private static final String ROLES = "roles";
        private static final String GROUPS = "groups";
        private static final String PASSWORD = "password";
        private static final String NAME = "name";
    
        private String indexName = null;
    
        @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/values.yaml

      labels: {}
      # Annotations to apply to all top level resources
      annotations: {}
    
      # Additional volumeMounts to the ztunnel container
      volumeMounts: []
    
      # Additional volumes to the ztunnel pod
      volumes: []
    
      # Annotations added to each pod. The default annotations are required for scraping prometheus (in most environments).
      podAnnotations:
        prometheus.io/port: "15020"
        prometheus.io/scrape: "true"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      repeated string allowedCapabilities = 4;
    
      // volumes is an allowlist of volume plugins. Empty indicates that
      // no volumes may be used. To allow all volumes you may use '*'.
      // +optional
      repeated string volumes = 5;
    
      // hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

      <developers>
        <developer>
          <id>morgand</id>
          <name>Morgan Delagrange</name>
          <email>morgand at apache dot org</email>
          <organization>Apache</organization>
          <roles>
            <role>Java Developer</role>
          </roles>
        </developer>
        <developer>
          <id>rwaldhoff</id>
          <name>Rodney Waldhoff</name>
          <email>rwaldhoff at apache org</email>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/daemonset.yaml

              {{- toYaml . | nindent 8 }}
            {{- end }}
          priorityClassName: system-node-critical
          terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
          volumes:
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  path: istio-token
                  expirationSeconds: 43200
                  audience: istio-ca
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 5K bytes
    - Viewed (0)
  8. docs/tls/kubernetes/README.md

    Whether you are planning to use Kubernetes StatefulSet or Kubernetes Deployment, the steps remain the same.
    
    If you're using certificates provided by a CA, add the below section in your yaml file under `spec.volumes[]`
    
    ```yaml
        volumes:
          - name: secret-volume
            secret:
              secretName: tls-ssl-minio
              items:
              - key: public.crt
                path: public.crt
              - key: private.key
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 3K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/os/63703.md

    On Windows, [Readlink] no longer tries to normalize volumes
    to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 280 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                    if (fessConfig.isValidSearchLogPermissions(roles.toArray(new String[roles.size()]))) {
                        suggester.indexer().indexFromSearchWord(sb.toString(), fields.toArray(new String[fields.size()]),
                                tags.toArray(new String[tags.size()]), roles.toArray(new String[roles.size()]), 1, langs);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
Back to top