Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 528 for logic (0.23 sec)

  1. pkg/controller/deployment/rolling.go

    	"fmt"
    	"sort"
    
    	apps "k8s.io/api/apps/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller"
    	deploymentutil "k8s.io/kubernetes/pkg/controller/deployment/util"
    )
    
    // rolloutRolling implements the logic for rolling a new replica set.
    func (dc *DeploymentController) rolloutRolling(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) error {
    	newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    			ret[obj.Name] = obj
    		}
    	}
    	return ret, created
    }
    
    func TestWriteConfigMapDeleted(t *testing.T) {
    	// the basics are tested above, this checks the deletion logic when the ca bundles are too large
    	cm := &corev1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: "extension-apiserver-authentication"},
    		Data: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. tools/docker-builder/types.go

    	if legacy, f := os.LookupEnv("DOCKER_BUILD_VARIANTS"); f {
    		variants = strings.Split(legacy, " ")
    	}
    
    	if os.Getenv("INCLUDE_UNTAGGED_DEFAULT") == "true" {
    		// This legacy env var was to workaround the old build logic not being very smart
    		// In the new builder, we automagically detect this. So just insert the 'default' variant
    		cur := sets.New(variants...)
    		cur.Insert(DefaultVariant)
    		variants = sets.SortedList(cur)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        private static OptionalEntity<BadWord> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        public static OptionalEntity<DataConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         *
         * This class accomplishes this be maintaining a list of {@link CommandLineActionCreator}s which can each attempt to
         * create an {@link Action} from the given CLI args, and handles the logic for deciding whether or not to continue processing
         * based on whether the result is a {@link ContinuingAction} or not.  It allows for injecting alternate Creators which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    func CreateAdmissionRequest(attr admission.Attributes, equivalentGVR metav1.GroupVersionResource, equivalentKind metav1.GroupVersionKind) *admissionv1.AdmissionRequest {
    	// Attempting to use same logic as webhook for constructing resource
    	// GVK, GVR, subresource
    	// Use the GVK, GVR that the matcher decided was equivalent to that of the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

        }
    
        //===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        private static OptionalEntity<ProtwordsItem> getEntity(final CreateForm form) {
            switch (form.crudMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        public static OptionalEntity<FileConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        public static OptionalEntity<WebConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top