Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Uncommented (0.63 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // when their indirect markings change. However, SetRequireSeparateIndirect
    // won't move requirements from other blocks, especially blocks with comments.
    //
    // If the file initially has one uncommented block of requirements,
    // SetRequireSeparateIndirect will split it into a direct-only and indirect-only
    // block. This aids in the transition to separate blocks.
    func (f *File) SetRequireSeparateIndirect(req []*Require) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    		if err != nil {
    			return nil, err
    		}
    
    		lines := strings.SplitAfter(string(content), "\n")
    		active := false
    		for lineno, line := range lines {
    			lineno++
    
    			// Ignore comments and commented-out code.
    			if i := strings.Index(line, "//"); i >= 0 {
    				line = line[:i]
    			}
    			line = strings.TrimSpace(line)
    
    			// We start checking code at a TEXT line for a frameless function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		if !inStar && strings.HasPrefix(line, "//") {
    			check.comment(pos+token.Pos(offset), line)
    			continue
    		}
    
    		// Skip over, cut out any /* */ comments,
    		// to avoid being confused by a commented-out // comment.
    		for {
    			line = strings.TrimSpace(line)
    			if inStar {
    				var ok bool
    				_, line, ok = strings.Cut(line, "*/")
    				if !ok {
    					break
    				}
    				inStar = false
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/positions.go

    // This file implements helper functions for scope position computations.
    
    package syntax
    
    // StartPos returns the start position of n.
    func StartPos(n Node) Pos {
    	// Cases for nodes which don't need a correction are commented out.
    	for m := n; ; {
    		switch n := m.(type) {
    		case nil:
    			panic("nil node")
    
    		// packages
    		case *File:
    			// file block starts at the beginning of the file
    			return MakePos(n.Pos().Base(), 1, 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/reflect/abi.go

    // constants will break every part of the toolchain that
    // uses reflect to call functions (e.g. go test, or anything
    // that uses text/template). The values that are currently
    // commented out there should be the actual values once
    // we're ready to use the register ABI everywhere.
    var (
    	intArgRegs   = abi.IntArgRegs
    	floatArgRegs = abi.FloatArgRegs
    	floatRegSize = uintptr(abi.EffectiveFloatRegSize)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * `allow` - Automatically sets the `allowInsecureProtocol` property to `true` for the Maven repository URL in the generated Gradle build script.
    * `warn` - Emits a warning about each insecure URL.  Generates commented-out lines to enable each repository, as per the `allow` option.  You will have to opt-in by editing the generated script and uncommenting each repository URL, or else the Gradle build will fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    							break
    						}
    					}
    					if len(archCandidates) > 0 {
    						arch = archCandidates[0].name
    						archDef = archCandidates[0]
    					}
    				}
    			}
    
    			// Ignore comments and commented-out code.
    			if i := strings.Index(line, "//"); i >= 0 {
    				line = line[:i]
    			}
    
    			if m := asmTEXT.FindStringSubmatch(line); m != nil {
    				flushRet()
    				if arch == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top