Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 192 for nindent (0.49 sec)

  1. manifests/charts/istio-cni/templates/daemonset.yaml

    {{ toYaml .Values.cni.podAnnotations | indent 8 }}
            {{- end }}
        spec:
          {{if .Values.cni.ambient.enabled }}hostNetwork: true{{ end }}
          nodeSelector:
            kubernetes.io/os: linux
          # Can be configured to allow for excluding istio-cni from being scheduled on specified nodes
          {{- with .Values.cni.affinity }}
          affinity:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        kubectl.kubernetes.io/default-container: "{{ index $containers 0 }}",
        {{ end }}
      }
    spec:
      securityContext:
      {{- if .Values.gateways.securityContext }}
        {{- toYaml .Values.gateways.securityContext | nindent 4 }}
      {{- else }}
        sysctls:
        - name: net.ipv4.ip_unprivileged_port_start
          value: "0"
      {{- end }}
      containers:
      - name: istio-proxy
      {{- if contains "/" .Values.global.proxy.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

            int minIndent = Integer.MAX_VALUE;
            for (String line : lines) {
                if (line.trim().isEmpty()) {
                    continue;
                }
    
                int indent = 0;
                while (indent < line.length() && Character.isWhitespace(line.charAt(indent))) {
                    indent++;
                }
                if (indent < line.length()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            logDeprecation();
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/config.go

    			c.RemoteClusterValues = c.ControlPlaneValues
    		}
    	}
    }
    
    // Indent indents a block of text with an indent string
    func Indent(text, indent string) string {
    	if text[len(text)-1:] == "\n" {
    		result := ""
    		for _, j := range strings.Split(text[:len(text)-1], "\n") {
    			result += indent + j + "\n"
    		}
    		return result
    	}
    	result := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata_test.go

    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    {{- else if .Values.global.defaultTolerations }}
          tolerations:
    {{ toYaml .Values.global.defaultTolerations | indent 6 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    {{- else if .Values.global.defaultTolerations }}
          tolerations:
    {{ toYaml .Values.global.defaultTolerations | indent 6 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            annotations: KaAnnotationList,
            currentMetaAnnotations: Set<ClassId>?,
            indent: Int
        ) {
            appendLine("annotations: [".indented(indent))
            for (annotation in annotations) {
                appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = indent + 2))
                if (currentMetaAnnotations != null) {
                    val classId = annotation.classId ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top