Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Haines (0.11 sec)

  1. src/main/resources/fess_indices/fess/de/stopwords.txt

    kein
    keine
    keinem
    keinen
    keiner
    keines
    können
    könnte
    machen
    man
    manche
    manchem
    manchen
    mancher
    manches
    mein
    meine
    meinem
    meinen
    meiner
    meines
    mit
    muss
    musste
    nach
    nicht
    nichts
    noch
    nun
    nur
    ob
    oder
    ohne
    sehr
    sein
    seine
    seinem
    seinen
    seiner
    seines
    selbst
    sich
    sie
    ihnen
    sind
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex_test.go

    	{
    		"argumented macro invoked without arguments",
    		lines(
    			"#define X() foo ",
    			"X()",
    			"X",
    		),
    		"foo.\n.X.\n",
    	},
    	{
    		"multiline macro without arguments",
    		lines(
    			"#define A 1\\",
    			"\t2\\",
    			"\t3",
    			"before",
    			"A",
    			"after",
    		),
    		"before.\n.1.\n.2.\n.3.\n.after.\n",
    	},
    	{
    		"multiline macro with arguments",
    		lines(
    			"#define A(a, b, c) a\\",
    			"\tb\\",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/base/timings.go

    			lines.add(prefix+"unaccounted", 1, unaccounted, tot, nil)
    		}
    
    		lines.add(prefix+"total", 1, tot, tot, nil)
    
    		lines.write(w)
    	}
    }
    
    func commonPrefix(a, b string) string {
    	i := 0
    	for i < len(a) && i < len(b) && a[i] == b[i] {
    		i++
    	}
    	return a[:i]
    }
    
    type lines [][]string
    
    func (lines *lines) add(label string, n int, dt, tot time.Duration, events []*event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensionsTest.kt

            filterable.apply {
                filter<StripJavaComments>()
                filter<HeadFilter>("lines" to 25, "skip" to 1)
                filter<HeadFilter>(mapOf("lines" to 52, "skip" to 2))
                filter(StripJavaComments::class)
                filter(HeadFilter::class, "lines" to 25, "skip" to 3)
                filter(HeadFilter::class, mapOf("lines" to 52, "skip" to 4))
            }
    
            inOrder(filterable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<StripJavaComments>()
     * filter<com.mycompany.project.CustomFilter>()
     * filter<HeadFilter>("lines" to 25, "skip" to 2)
     * filter<ReplaceTokens>("tokens" to mapOf("copyright" to "2009", "version" to "2.3.1"))
     * ```
     *
     * @param T type of the filter to add
     * @param properties map of filter properties
     * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. misc/ios/detect.go

    		return nil, err
    	}
    	return bytes.TrimSpace(out), nil
    }
    
    func getLines(cmd *exec.Cmd) [][]byte {
    	out := output(cmd)
    	lines := bytes.Split(out, []byte("\n"))
    	// Skip the empty line at the end.
    	if len(lines[len(lines)-1]) == 0 {
    		lines = lines[:len(lines)-1]
    	}
    	return lines
    }
    
    func output(cmd *exec.Cmd) []byte {
    	out, err := cmd.Output()
    	if err != nil {
    		fmt.Println(strings.Join(cmd.Args, "\n"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

                    } else if ("".equals(artifact.getClassifier())) {
                        mains.add(artifact);
                    }
                }
            }
            if (!mains.isEmpty() && !consumers.isEmpty()) {
                ArrayList<Artifact> result = new ArrayList<>(artifacts);
                for (Artifact main : mains) {
                    result.remove(main);
                    result.add(new DefaultArtifact(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/cmd/fix/buildtag.go

    		return false
    	}
    
    	// File is already gofmt-ed, so we know that if there are +build lines,
    	// they are in a comment group that starts with a //go:build line followed
    	// by a blank line. While we cannot delete comments from an AST and
    	// expect consistent output in general, this specific case - deleting only
    	// some lines from a comment block - does format correctly.
    	fixed := false
    	for _, g := range f.Comments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/dist/testjson.go

    	w       io.Writer // Underlying writer
    	variant string    // Add ":variant" to Package field
    
    	lineBuf bytes.Buffer // Buffer for incomplete lines
    }
    
    func (f *testJSONFilter) Write(b []byte) (int, error) {
    	bn := len(b)
    
    	// Process complete lines, and buffer any incomplete lines.
    	for len(b) > 0 {
    		nl := bytes.IndexByte(b, '\n')
    		if nl < 0 {
    			f.lineBuf.Write(b)
    			break
    		}
    		var line []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

        }
    
        @Override
        public List<String> readMultipleLines() throws IOException {
            List<String> lines = new ArrayList<>();
            for (String line = this.readLine(); line != null && !line.isEmpty(); line = readLine()) {
                lines.add(line);
            }
            return lines;
        }
    
        @Override
        public void write(String line) throws IOException {
            doDisplay(line);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top