Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 579 for COMMENT (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

                }
            }
        }
    
        public Map<String, List<String>> readUniqueLockFile() {
            checkValidRoot();
            Predicate<String> empty = String::isEmpty;
            Predicate<String> comment = s -> s.startsWith("#");
            Path uniqueLockFile = getUniqueLockfilePath();
            List<String> emptyLockIds = new ArrayList<>();
            Map<String, List<String>> uniqueLockState = new HashMap<>(10);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/intervals.go

    //   - series of calls to b.Live/b.Kill based on a backwards reverse layout
    //     order scan over instructions
    //   - invoke b.Finish() to produce final set
    //
    // See the Live method comment for an IR example.
    type IntervalsBuilder struct {
    	s Intervals
    	// index of last instruction visited plus 1
    	lidx int
    }
    
    func (c *IntervalsBuilder) last() int {
    	return c.lidx - 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/engine.go

    // shell.
    //
    // # Script Language
    //
    // Each line of a script is parsed into a sequence of space-separated command
    // words, with environment variable expansion within each word and # marking an
    // end-of-line comment. Additional variables named ':' and '/' are expanded
    // within script arguments (expanding to the value of os.PathListSeparator and
    // os.PathSeparator respectively) but are not inherited in subprocess
    // environments.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build_read.go

    	c := r.peekByte(skipSpace)
    	r.peek = 0
    	return c
    }
    
    var goEmbed = []byte("go:embed")
    
    // findEmbed advances the input reader to the next //go:embed comment.
    // It reports whether it found a comment.
    // (Otherwise it found an error or EOF.)
    func (r *importReader) findEmbed(first bool) bool {
    	// The import block scan stopped after a non-space character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            }
            mavenDependency.setScope(dependency.getScope());
            return mavenDependency;
        }
    
        private static void insertGradleMetadataMarker(XmlProvider xmlProvider) {
            String comment = Joiner.on("").join(
                Streams.concat(
                    Arrays.stream(MetaDataParser.GRADLE_METADATA_MARKER_COMMENT_LINES),
                    Stream.of(MetaDataParser.GRADLE_6_METADATA_MARKER)
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/README

    and $WORK/gopath/src/hello.go containing the listed contents.
    
    Each line of a script is parsed into a sequence of space-separated command
    words, with environment variable expansion within each word and # marking
    an end-of-line comment. Additional variables named ':' and '/' are expanded
    within script arguments (expanding to the value of os.PathListSeparator and
    os.PathSeparator respectively) but are not inherited in subprocess environments.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal.go

    //     wrapped in one or more <![CDATA[ ... ]]> tags, not as an XML element.
    //   - a field with tag ",innerxml" is written verbatim, not subject
    //     to the usual marshaling procedure.
    //   - a field with tag ",comment" is written as an XML comment, not
    //     subject to the usual marshaling procedure. It must not contain
    //     the "--" string within it.
    //   - a field with a tag including the "omitempty" option is omitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/go/build/read.go

    	c := r.peekByte(skipSpace)
    	r.peek = 0
    	return c
    }
    
    var goEmbed = []byte("go:embed")
    
    // findEmbed advances the input reader to the next //go:embed comment.
    // It reports whether it found a comment.
    // (Otherwise it found an error or EOF.)
    func (r *importReader) findEmbed(first bool) bool {
    	// The import block scan stopped after a non-space character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top