Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 633 for isIdent (0.19 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

            {{- end }}
            sidecar.istio.io/inject: "false"
            {{- if .Values.pilot.podAnnotations }}
    {{ toYaml .Values.pilot.podAnnotations | indent 8 }}
            {{- end }}
        spec:
    {{- if .Values.pilot.nodeSelector }}
          nodeSelector:
    {{ toYaml .Values.pilot.nodeSelector | indent 8 }}
    {{- end }}
    {{- with .Values.pilot.affinity }}
          affinity:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. helm-releases/minio-5.0.6.tgz

    (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} add-policy: |- {{ include (print $.Template.BasePath "/_helper_create_policy.txt") . | indent 4 }} {{- range $idx, $policy := .Values.policies }} # Policy: {{ $policy.name }} policy_{{ $idx }}.json: |- {{ include (print $.Template.BasePath "/_helper_policy.tpl") . | indent 4 }} {{ end }} {{- range $idx, $svc := .Values.svcaccts }} {{-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    		// Object wildcard
    		".*",
    
    		// array wildcard
    		"[*]",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &j)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		// repr.Println(j, repr.Indent("  "), repr.OmitEmpty(true))
    	}
    }
    
    func TestJSONPath(t *testing.T) {
    	p := participle.MustBuild(
    		&JSONPath{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/go/types/struct.go

    	var fset objset
    
    	// current field typ and tag
    	var typ Type
    	var tag string
    	add := func(ident *ast.Ident, embedded bool) {
    		if tag != "" && tags == nil {
    			tags = make([]string, len(fields))
    		}
    		if tags != nil {
    			tags = append(tags, tag)
    		}
    
    		pos := ident.Pos()
    		name := ident.Name
    		fld := NewField(pos, check.pkg, name, typ, embedded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatter.java

            String exceptionIndent = Strings.repeat(INDENT, exceptionLevel + 1);
            String exceptionText = exceptionLevel == 0 ? exception.toString() : "\nCaused by:\n" + exception.toString();
            String indentedText = TextUtil.indent(exceptionText, exceptionIndent);
            builder.append(indentedText);
            builder.append('\n');
    
            String stackTraceIndent = exceptionIndent + INDENT;
            List<StackTraceElement> stackTrace = null;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/common/dependency-reports/src/main/java/com/example/GraphResolvedComponents.java

            ResolvedComponentResult component,
            PrintWriter writer,
            Set<ResolvedComponentResult> seen,
            String indent
        ) {
            writer.print(component.getId().getDisplayName());
            if (seen.add(component)) {
                writer.println();
                String newIndent = indent + "  ";
                for (DependencyResult dependency : component.getDependencies()) {
                    writer.print(newIndent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/go/parser/resolver_test.go

    	objmap := map[token.Pos]token.Pos{}
    	ast.Inspect(file, func(node ast.Node) bool {
    		// Ignore blank identifiers to reduce noise.
    		if ident, _ := node.(*ast.Ident); ident != nil && ident.Obj != nil && ident.Name != "_" {
    			objmap[ident.Pos()] = ident.Obj.Pos()
    		}
    		return true
    	})
    	return objmap
    }
    
    // declsFromComments looks at comments annotating uses and declarations, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. cmd/gotemplate/gotemplate_test.go

    		"no-trailing-newline": {
    			numSpaces: 1,
    			content:   "hello\nworld",
    			expected:  "hello\n world",
    		},
    		"zero-indent": {
    			numSpaces: 0,
    			content:   "hello\nworld",
    			expected:  "hello\nworld",
    		},
    	} {
    		t.Run(name, func(t *testing.T) {
    			assert.Equal(t, tt.expected, indent(tt.numSpaces, tt.content))
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      }
    
      // Indent and append a C++ statement.
      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
      // Indent and append a call to a TF method returning a Status to check.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.3.tgz

    (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} add-policy: |- {{ include (print $.Template.BasePath "/_helper_create_policy.txt") . | indent 4 }} {{- range $idx, $policy := .Values.policies }} # Policy: {{ $policy.name }} policy_{{ $idx }}.json: |- {{ include (print $.Template.BasePath "/_helper_policy.tpl") . | indent 4 }} {{ end }} {{- range $idx, $svc := .Values.svcaccts }} {{-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 19 08:53:02 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top