Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 231 for newLru (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	if a.result.Error != nil {
    		return types.NewErr("composited variable %q fails to compile: %v", a.name, a.result.Error)
    	}
    
    	v, details, err := a.result.Program.ContextEval(a.context, a.activation)
    	if details == nil {
    		return types.NewErr("unable to get evaluation details of variable %q", a.name)
    	}
    	costPtr := details.ActualCost()
    	if costPtr == nil {
    		return types.NewErr("unable to calculate cost of variable %q", a.name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/toolchain/switch.go

    	for i := len(list) - 1; i >= 0; i-- {
    		v := list[i]
    		if gover.Compare(v, need) < 0 {
    			break
    		}
    		if gover.Lang(latest) == gover.Lang(v) {
    			continue
    		}
    		newer := latest
    		latest = v
    		if newer != "" && !gover.IsPrerelease(newer) {
    			// latest is the last patch release of Go 1.X, and we saw a non-prerelease of Go 1.(X+1),
    			// so latest is the one we want.
    			break
    		}
    	}
    	if latest == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

                executer.expectDocumentedDeprecationWarning("Gradle Enterprise plugin $version has been deprecated. Starting with Gradle 9.0, only Gradle Enterprise plugin 3.13.1 or newer is supported. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#unsupported_ge_plugin_3.13")
            }
    
            and:
            runBuildWithScanRequest()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/kernel_version_solaris_test.go

    		}
    		if !gotSock && !gotAccept4 && (major > 5 || (major == 5 && minor >= 11)) {
    			t.Errorf("SupportSockNonblockCloexec and SupportAccept4 are false, but kernel version is 5.11 or newer, SunOS version: %d.%d", major, minor)
    		}
    	} else { // Solaris
    		if gotSock && gotAccept4 && (major < 11 || (major == 11 && minor < 4)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Run this build using a Java ${higherVersion.javaVersion.majorVersion} or newer JVM.")
        }
    
        def 'JVM version too low uses custom error message for plugin when version attribute explicitly mis-set'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	// nested fields and methods than are shown here.) Clients
    	// that use the compatibility shim T will compile with any
    	// version of go, whether older or newer than go1.22, but only
    	// the newer version will use the std.Real implementation.
    	//
    	// Now consider a reference to method M in new(T).F.M() in a
    	// module that requires a minimum of go1.21. The analysis may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

            'PMD version changed' | 'toolVersion="6.5.0"'
            'rulesets changed'    | 'ruleSetFiles = files("customRuleSet.xml")'
        }
    
        def "incremental analysis is available in 6.0.0 or newer"() {
            given:
            Assume.assumeTrue(supportIncrementalAnalysis())
            goodCode()
    
            expect:
            succeeds('pmdMain')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// there are no new access to the server here, and these operations cannot fail.
    	fmt.Fprintf(&buf, "proof of misbehavior:\n\t%v", h)
    	if p, err := tlog.ProveTree(newer.N, older.N, thr); err != nil {
    		fmt.Fprintf(&buf, "\tinternal error: %v\n", err)
    	} else if err := tlog.CheckTree(p, newer.N, newer.Hash, older.N, h); err != nil {
    		fmt.Fprintf(&buf, "\tinternal error: generated inconsistent proof\n")
    	} else {
    		for _, h := range p {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

         Required by:
             project :consumer
          > Dependency resolution is looking for a library compatible with JVM runtime version $currentJava, but 'project :producer' is only compatible with JVM runtime version $tooHighJava or newer.""")
            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. cmd/update-notifier.go

    )
    
    // prepareUpdateMessage - prepares the update message, only if a
    // newer version is available.
    func prepareUpdateMessage(downloadURL string, older time.Duration) string {
    	if downloadURL == "" || older <= 0 {
    		return ""
    	}
    
    	// Compute friendly duration string to indicate time
    	// difference between newer and current release.
    	t := time.Time{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top