Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 232 for normalization (0.17 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasher.java

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Optional;
    
    /**
     * Hashes input streams while normalizing line endings in text files.  Normalization involves treating '\r' and '\r\n' characters
     * as '\n' while calculating the hash.  If a file is detected to be binary (i.e. if the file contains ASCII control characters) then the hashing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java
    
    import org.objectweb.asm.Opcodes
    
    import java.lang.reflect.Modifier
    
    class ApiClassExtractorInnerClassTest extends ApiClassExtractorTestSupport {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.File;
    import java.util.List;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    /**
     * A Groovy {@link Compiler} which does some normalization of the compile configuration and behaviour before delegating to some other compiler.
     */
    public class NormalizingGroovyCompiler implements Compiler<GroovyJavaJointCompileSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    package norm
    
    import "io"
    
    type normWriter struct {
    	rb  reorderBuffer
    	w   io.Writer
    	buf []byte
    }
    
    // Write implements the standard write interface.  If the last characters are
    // not at a normalization boundary, the bytes will be buffered for the next
    // write. The remaining bytes will be written on close.
    func (w *normWriter) Write(data []byte) (n int, err error) {
    	// Process data in pieces to keep w.buf size bounded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    func StripUnsupportedFormatsPostProcess(s *spec.Schema) error {
    	if len(s.Format) == 0 {
    		return nil
    	}
    
    	normalized := strings.Replace(s.Format, "-", "", -1) // go-openapi default format name normalization
    	if !supportedFormats.Has(normalized) {
    		s.Format = ""
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	headerLenMask   = 0x3F // extract the length value from the header byte
    	headerFlagsMask = 0xC0 // extract the qcInfo bits from the header byte
    )
    
    // Properties provides access to normalization properties of a rune.
    type Properties struct {
    	pos   uint8  // start position in reorderBuffer; used in composition.go
    	size  uint8  // length of UTF-8 encoding of this rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    If Gradle detects an annotation processor on the compile classpath, the annotation processor classpath defaults to the compile classpath when not explicitly set, which in turn means the entire compile classpath is treated...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    Finally, we find this in our build file:
    
    ====
    include::sample[dir="snippets/buildCache/normalization/kotlin",files="build.gradle.kts[tags=versionInfo]"]
    include::sample[dir="snippets/buildCache/normalization/groovy",files="build.gradle[tags=versionInfo]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler.java

    import java.io.File;
    import java.util.List;
    import java.util.stream.Collectors;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    /**
     * A Java {@link Compiler} which does some normalization of the compile configuration and behaviour before delegating to some other compiler.
     */
    public class NormalizingJavaCompiler implements Compiler<JavaCompileSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/readwriter.go

    package norm
    
    import "io"
    
    type normWriter struct {
    	rb  reorderBuffer
    	w   io.Writer
    	buf []byte
    }
    
    // Write implements the standard write interface.  If the last characters are
    // not at a normalization boundary, the bytes will be buffered for the next
    // write. The remaining bytes will be written on close.
    func (w *normWriter) Write(data []byte) (n int, err error) {
    	// Process data in pieces to keep w.buf size bounded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.9K bytes
    - Viewed (0)
Back to top