Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for newLru (0.2 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvoker.groovy

        }
    
        private static void assertUnsupportedReportFormatSARIF(VersionNumber version) {
            throw new GradleException("SARIF report format is supported on Checkstyle versions 10.3.3 and newer. Please upgrade from Checkstyle " + version +" or disable the SARIF format.")
        }
    
        private static parseCheckstyleXml(Boolean isXmlRequired, File xmlOutputLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    			check.pass.Reportf(pos, "invalid space %#q in %s directive", r, verb)
    		}
    	}
    
    	switch verb {
    	default:
    		// TODO: Use the go language version for the file.
    		// If that version is not newer than us, then we can
    		// report unknown directives.
    
    	case "//go:build":
    		// Ignore. The buildtag analyzer reports misplaced comments.
    
    	case "//go:debug":
    		if check.file == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/tidy.go

    	base.AddModCommonFlags(&cmdTidy.Flag)
    }
    
    // A goVersionFlag is a flag.Value representing a supported Go version.
    //
    // (Note that the -go argument to 'go mod edit' is *not* a goVersionFlag.
    // It intentionally allows newer-than-supported versions as arguments.)
    type goVersionFlag struct {
    	v string
    }
    
    func (f *goVersionFlag) String() string { return f.v }
    func (f *goVersionFlag) Get() any       { return f.v }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_x86.go

    	X86.HasSSE42 = isSet(ecx1, cpuid_SSE42)
    	X86.HasPOPCNT = isSet(ecx1, cpuid_POPCNT)
    	X86.HasAES = isSet(ecx1, cpuid_AES)
    
    	// OSXSAVE can be false when using older Operating Systems
    	// or when explicitly disabled on newer Operating Systems by
    	// e.g. setting the xsavedisable boot option on Windows 10.
    	X86.HasOSXSAVE = isSet(ecx1, cpuid_OSXSAVE)
    
    	// The FMA instruction set extension only has VEX prefixed instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

                    left + " should be older than " + right);
            assertTrue(
                    newArtifactVersion(right).compareTo(newArtifactVersion(left)) > 0,
                    right + " should be newer than " + left);
        }
    
        private void assertVersionEqual(String left, String right) {
            assertTrue(
                    newArtifactVersion(left).compareTo(newArtifactVersion(right)) == 0,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    [[sec:enable_checkstyle_sarif]]
    == Generate SARIF report
    
    link:https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html[SARIF] report is supported on Checkstyle versions 10.3.3 and newer. It is not enabled by default.
    
    .Enable SARIF Report
    ====
    include::sample[dir="snippets/codeQuality/codeQuality/kotlin",files="build.gradle.kts[tags=enable-checkstyle-sarif-report]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    }
    
    func stringToCIDR(arg ref.Val) ref.Val {
    	s, ok := arg.Value().(string)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    	}
    
    	net, err := parseCIDR(s)
    	if err != nil {
    		return types.NewErr("network address parse error during conversion from string: %v", err)
    	}
    
    	return apiservercel.CIDR{
    		Prefix: net,
    	}
    }
    
    func cidrToString(arg ref.Val) ref.Val {
    	cidr, ok := arg.(apiservercel.CIDR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. README.md

        should not use them for communication between trusted and untrusted code.
    
    6.  For the mainline flavor, we test the libraries using OpenJDK 8, 11, and 17
        on Linux, with some additional testing on newer JDKs and on Windows. Some
        features, especially in `com.google.common.io`, may not work correctly in
        non-Linux environments. For the Android flavor, our unit tests also run on
        API level 21 (Lollipop).
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_arm.go

    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error)
    //sys	sendmsg(s int, msg *Msghdr, flags int) (n int, err error)
    
    // 64-bit file system and 32-bit uid calls
    // (16-bit uid calls are not always supported in newer kernels)
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. pkg/api/persistentvolumeclaim/util.go

    	// invalid to specify it at using the dataSource field at create.
    	if dataSourceInUse(oldPVCSpec) {
    		return
    	}
    
    	// Check if dataSourceRef is empty is because if it's not empty, then there is
    	// definitely a newer client and it definitely either wants to create a non-empty
    	// volume, or it wants to update a PVC that has a data source. Whether the
    	// specified data source is valid or satisfiable is a matter for validation and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top