Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for quote (0.16 sec)

  1. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

            - --proxyComponentLogLevel
            - {{ annotation .ObjectMeta `sidecar.istio.io/componentLogLevel` .Values.global.proxy.componentLogLevel | quote}}
            - --log_output_level
            - {{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level | quote}}
            {{- if .Values.global.logAsJson }}
            - --log_as_json
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/_helpers.tpl

    .Values.labels }} {{- if not (or (eq $key "app") (eq $key "istio")) }} {{ $key | quote }}: {{ $val | quote }} {{- end }} {{- end }} {{- end }} {{- define "gateway.selectorLabels" -}} {{- if hasKey .Values.labels "app" }} {{- with .Values.labels.app }}app: {{.|quote}} {{- end}} {{- else }}app: {{ include "gateway.name" . }} {{- end }} {{- if hasKey .Values.labels "istio" }} {{- with .Values.labels.istio }} istio: {{.|quote}} {{- end}} {{- else }} istio: {{ include "gateway.name" . | trimPrefix "istio-"...
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 06 16:57:46 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

    nodeSelectorTerms: - matchExpressions: {{- if .global.arch }} - key: kubernetes.io/arch operator: In values: {{- range $key, $val := .global.arch }} {{- if gt ($val | int) 0 }} - {{ $key | quote }} {{- end }} {{- end }} {{- end }} {{- range $key, $val := $nodeSelector }} - key: {{ $key }} operator: In values: - {{ $val | quote }} {{- end }} {{- end }} {{- end }} {{- define "nodeAffinityPreferre" }} {{- range $key, $val := .global.arch }} {{- if gt ($val | int) 0 }} - weight: {{ $val | int }} preference: matchExpressions:...
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 10 21:23:08 GMT 2022
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/text/Tokenizer.java

        }
    
        private boolean processQuote() {
            if (peekc == QUOTE) {
                ttype = QUOTE;
                int i = 0;
                int d = read();
                int c = d;
                while (d >= 0) {
                    if (d == QUOTE) {
                        final int d2 = read();
                        if (d2 == QUOTE) {
                            c = QUOTE;
                        } else {
                            d = d2;
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - --proxyComponentLogLevel
            - {{ annotation .ObjectMeta `sidecar.istio.io/componentLogLevel` .Values.global.proxy.componentLogLevel | quote}}
            - --log_output_level
            - {{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level | quote}}
          {{- if .Values.global.sts.servicePort }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

    /**
     * Utility class for parsing CSV text
     */
    public final class KuromojiCSVUtil {
        private static final char QUOTE = '"';
    
        private static final char COMMA = ',';
    
        private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$");
    
        private static final String ESCAPED_QUOTE = "\"\"";
    
        private KuromojiCSVUtil() {
        } // no instance!!!
    
        /**
         * Parse CSV line
         *
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/templates/deployment.yaml

                  value: {{.Values.watchedNamespaces | quote}}
                - name: LEADER_ELECTION_NAMESPACE
                  value: {{.Release.Namespace | quote}}
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: metadata.name
                - name: OPERATOR_NAME
                  value: {{.Release.Namespace | quote}}
                - name: WAIT_FOR_RESOURCES_TIMEOUT
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 19:10:42 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  8. helm/minio/templates/secrets.yaml

    data:
      rootUser: {{ include "minio.root.username" . | b64enc | quote }}
      rootPassword: {{ include "minio.root.password" . | b64enc | quote }}
      {{- if .Values.etcd.clientCert }}
      etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc | quote }}
      {{- end }}
      {{- if .Values.etcd.clientCertKey }}
      etcd_client.key: {{ .Values.etcd.clientCertKey | toString | b64enc | quote }}
      {{- end }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 12 04:09:29 GMT 2023
    - 706 bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top