Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for inputString (0.4 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockInfoSerializer.java

            out.operation = dataInput.readUTF();
            return out;
        }
    
        private String trimIfNecessary(String inputString) {
            if (inputString.length() > INFORMATION_REGION_DESCR_CHUNK_LIMIT) {
                return inputString.substring(0, INFORMATION_REGION_DESCR_CHUNK_LIMIT);
            } else {
                return inputString;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    	copy(out, b[0:n])
    	rb := reorderBuffer{f: *ft, src: src, nsrc: len(b), out: out, flushF: appendFlush}
    	return doAppendInner(&rb, n)
    }
    
    // String returns f(s).
    func (f Form) String(s string) string {
    	src := inputString(s)
    	ft := formTable[f]
    	n, ok := ft.quickSpan(src, 0, len(s), true)
    	if ok {
    		return s
    	}
    	out := make([]byte, n, len(s))
    	copy(out, s[0:n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    	copy(out, b[0:n])
    	rb := reorderBuffer{f: *ft, src: src, nsrc: len(b), out: out, flushF: appendFlush}
    	return doAppendInner(&rb, n)
    }
    
    // String returns f(s).
    func (f Form) String(s string) string {
    	src := inputString(s)
    	ft := formTable[f]
    	n, ok := ft.quickSpan(src, 0, len(s), true)
    	if ok {
    		return s
    	}
    	out := make([]byte, n, len(s))
    	copy(out, s[0:n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            file("inputs2").createDir()
    
            buildFile """
                class MyConfig {
                    @Input String inputString
                    @InputFile File inputFile
                    @OutputFiles Set<File> outputFiles
                }
    
                class MyTask extends DefaultTask {
                    @Input String inputString
                    @Nested MyConfig nested = new MyConfig()
                    @InputFile File inputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/input.go

    package norm
    
    import "unicode/utf8"
    
    type input struct {
    	str   string
    	bytes []byte
    }
    
    func inputBytes(str []byte) input {
    	return input{bytes: str}
    }
    
    func inputString(str string) input {
    	return input{str: str}
    }
    
    func (in *input) setBytes(str []byte) {
    	in.str = ""
    	in.bytes = str
    }
    
    func (in *input) setString(str string) {
    	in.str = str
    	in.bytes = nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    package norm
    
    import "unicode/utf8"
    
    type input struct {
    	str   string
    	bytes []byte
    }
    
    func inputBytes(str []byte) input {
    	return input{bytes: str}
    }
    
    func inputString(str string) input {
    	return input{str: str}
    }
    
    func (in *input) setBytes(str []byte) {
    	in.str = ""
    	in.bytes = str
    }
    
    func (in *input) setString(str string) {
    	in.str = str
    	in.bytes = nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        @SuppressWarnings("GrDeprecatedAPIUsage")
        static class SimpleTask extends DefaultTask {
            @Input
            String inputString
            @InputFile
            File inputFile
            @InputDirectory
            File inputDirectory
            @InputFiles
            File inputFiles
            @OutputFile
            File outputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    	context(pos int) lazyFlag
    }
    
    // inputString scans a string.
    type inputString struct {
    	str string
    }
    
    func (i *inputString) step(pos int) (rune, int) {
    	if pos < len(i.str) {
    		c := i.str[pos]
    		if c < utf8.RuneSelf {
    			return rune(c), 1
    		}
    		return utf8.DecodeRuneInString(i.str[pos:])
    	}
    	return endOfText, 0
    }
    
    func (i *inputString) canCheckPrefix() bool {
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
    
                def inputString = providers.gradleProperty('input').getOrElse('input')
    
                task myTask(type: TaskWithNestedIterable) {
                    outputFile = file('build/output.txt')
                    beans = [[new NestedBean(inputString)], [new NestedBean('secondInput')]]
                }
            """
            def task = ':myTask'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/regexp/exec.go

    	matchcap []int        // capture information for the match
    
    	inputs inputs
    }
    
    type inputs struct {
    	// cached inputs, to avoid allocation
    	bytes  inputBytes
    	string inputString
    	reader inputReader
    }
    
    func (i *inputs) newBytes(b []byte) input {
    	i.bytes.str = b
    	return &i.bytes
    }
    
    func (i *inputs) newString(s string) input {
    	i.string.str = s
    	return &i.string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
Back to top