Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 633 for isIdent (0.45 sec)

  1. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{ .Files.Get "files/injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "gateway") }}
          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{ .Files.Get "files/injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "gateway") }}
          gateway: |
    {{ .Files.Get "files/gateway-injection-template.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-simple") }}
          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/gofmt/internal.go

    	if err == nil {
    		sourceAdj = func(src []byte, indent int) []byte {
    			// Cap adjusted indent to zero.
    			if indent < 0 {
    				indent = 0
    			}
    			// Remove the wrapping.
    			// Gofmt has turned the "; " into a "\n\n".
    			// There will be two non-blank lines with indent, hence 2*indent.
    			src = src[2*indent+len("package p\n\nfunc _() {"):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. src/go/format/internal.go

    	if err == nil {
    		sourceAdj = func(src []byte, indent int) []byte {
    			// Cap adjusted indent to zero.
    			if indent < 0 {
    				indent = 0
    			}
    			// Remove the wrapping.
    			// Gofmt has turned the "; " into a "\n\n".
    			// There will be two non-blank lines with indent, hence 2*indent.
    			src = src[2*indent+len("package p\n\nfunc _() {"):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. cmd/yamlfmt/yamlfmt.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"flag"
    	"fmt"
    	"io"
    	"os"
    
    	"gopkg.in/yaml.v3"
    )
    
    func main() {
    	indent := flag.Int("indent", 2, "default indent")
    	flag.Parse()
    	for _, path := range flag.Args() {
    		sourceYaml, err := os.ReadFile(path)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: %v\n", path, err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 17 06:23:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            indent = indent.substring(2);
        }
    
        public void includeArtifact(Artifact artifact) {
            logger.debug(indent + artifact + " (selected for " + artifact.getScope() + ")");
        }
    
        public void omitForNearer(Artifact omitted, Artifact kept) {
            String omittedVersion = omitted.getVersion();
            String keptVersion = kept.getVersion();
    
            if (!Objects.equals(omittedVersion, keptVersion)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/go/ast/print.go

    		}
    		p.printf("%s (len = %d) {", x.Type(), x.Len())
    		if x.Len() > 0 {
    			p.indent++
    			p.printf("\n")
    			for i, n := 0, x.Len(); i < n; i++ {
    				p.printf("%d: ", i)
    				p.print(x.Index(i))
    				p.printf("\n")
    			}
    			p.indent--
    		}
    		p.printf("}")
    
    	case reflect.Struct:
    		t := x.Type()
    		p.printf("%s {", t)
    		p.indent++
    		first := true
    		for i, n := 0, t.NumField(); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/go/types/check.go

    // Instances map is non-nil. The given expr must be an ident, selector, or
    // index (list) expr with ident or selector operand.
    //
    // TODO(rfindley): the expr parameter is fragile. See if we can access the
    // instantiated identifier in some other way.
    func (check *Checker) recordInstance(expr ast.Expr, targs []Type, typ Type) {
    	ident := instantiatedIdent(expr)
    	assert(ident != nil)
    	assert(typ != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractSourceGenerator.java

        }
    
        protected void writeIndent() throws IOException {
            for (int i = 0; i < indent; i++) {
                writer.write("    ");
            }
        }
    
        public void indent(WriteAction action) throws IOException {
            try {
                indent++;
                action.run();
            } finally {
                indent--;
            }
        }
    
        @FunctionalInterface
        interface WriteAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                        appendLine("Failures in assignments:".indent(1))
                        stageFailure.usages.forEach { unassigned ->
                            appendLine(describedUnassignedValueUsage(unassigned).indent(2))
                        }
                    }
    
                    is StageFailure.DocumentCheckFailures -> {
                        appendLine("Failures in document checks:".indent(1))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top