Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for newLru (0.28 sec)

  1. pkg/controller/deployment/util/deployment_util.go

    	}
    	for k, v := range deployment.Annotations {
    		// newRS revision is updated automatically in getNewReplicaSet, and the deployment's revision number is then updated
    		// by copying its newRS revision number. We should not copy deployment's revision to its newRS, since the update of
    		// deployment revision number may fail (revision becomes stale) and the revision number in newRS is more reliable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	if found {
    		return field.Ref.ExprValue()
    	}
    	fieldDef, found := o.objectType.Fields[nameStr]
    	if !found {
    		return types.NewErr("no such field: %s", nameStr)
    	}
    	defValue := fieldDef.DefaultValue()
    	if defValue != nil {
    		return defValue
    	}
    	return types.NewErr("no default for type: %s", fieldDef.TypeName())
    }
    
    // Type returns the CEL type value of the object.
    func (o *ObjectValue) Type() ref.Type {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  4. pkg/registry/rbac/rest/storage_rbac.go

    		newCRB := clusterRoleBindingToCreate.DeepCopy()
    		newCRB.Subjects = existingRoleBinding.Subjects
    		newCRB.Labels = existingRoleBinding.Labels
    		newCRB.Annotations = existingRoleBinding.Annotations
    		if _, err := clusterRoleBindingClient.ClusterRoleBindings().Create(context.TODO(), newCRB, metav1.CreateOptions{}); err != nil && !apierrors.IsAlreadyExists(err) {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K 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. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    	}
    
    	if errors := apimachineryvalidation.ValidateServiceAccountName(name, false); len(errors) > 0 {
    		return types.NewErr("Invalid service account name")
    	}
    	if errors := apimachineryvalidation.ValidateNamespaceName(namespace, false); len(errors) > 0 {
    		return types.NewErr("Invalid service account namespace")
    	}
    	return authz.serviceAccount(namespace, name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                    public static record Child(String name) implements Parent {}
                }
            """
        }
    
        def "source compatibility lower than compiler version does not allow accessing newer Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
                java {
                    toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    	}
    
    	addr, err := parseIPAddr(s)
    	if err != nil {
    		// Don't add context, we control the error message already.
    		return types.NewErr("%v", err)
    	}
    
    	return apiservercel.IP{
    		Addr: addr,
    	}
    }
    
    func ipToString(arg ref.Val) ref.Val {
    	ip, ok := arg.(apiservercel.IP)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/policy_test.go

    				kubeadmVersion: "v1.12.3",
    			},
    			newK8sVersion:         "v1.10.10",
    			expectedMandatoryErrs: 1, // version must be higher than v1.12.0
    			expectedSkippableErrs: 1, // can't upgrade old k8s with newer kubeadm
    		},
    		{
    			name: "upgrading two minor versions in one go is not supported",
    			vg: &fakeVersionGetter{
    				clusterVersion: "v1.11.3",
    				kubeletVersion: "v1.11.3",
    				kubeadmVersion: "v1.13.0",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top