Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,701 for generations (0.18 sec)

  1. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    	newIC.Status = oldIC.Status
    
    	// Any changes to the spec increment the generation number, any changes to the
    	// status should reflect the generation number of the corresponding object.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !apiequality.Semantic.DeepEqual(oldIC.Spec, newIC.Spec) {
    		newIC.Generation = oldIC.Generation + 1
    	}
    }
    
    // Validate validates a new validatingAdmissionPolicy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/registry/apps/replicaset/storage/storage_test.go

    	}
    	storedRS, _ := etcdRS.(*apps.ReplicaSet)
    
    	// Generation initialization
    	if storedRS.Generation != 1 || storedRS.Status.ObservedGeneration != 0 {
    		t.Fatalf("Unexpected generation number %v, status generation %v", storedRS.Generation, storedRS.Status.ObservedGeneration)
    	}
    
    	// Updates to spec should increment the generation number
    	storedRS.Spec.Replicas++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    		{
    			name:              "auto update is enabled, first generation, spec matches - no update expected",
    			current:           newFlowSchema("fs1", "pl1", 100).WithAutoUpdateAnnotation("true").WithGeneration(1).Object(),
    			bootstrap:         newFlowSchema("fs1", "pl1", 100).Object(),
    			newObjectExpected: nil,
    		},
    		{
    			name:              "auto update is enabled, second generation, spec does not match - spec update expected",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. pkg/registry/apps/statefulset/strategy.go

    	// Any changes to the spec increment the generation number, any changes to the
    	// status should reflect the generation number of the corresponding object.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !apiequality.Semantic.DeepEqual(oldStatefulSet.Spec, newStatefulSet.Spec) {
    		newStatefulSet.Generation = oldStatefulSet.Generation + 1
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/coerce_test.go

    		t.Errorf("expected null json generateName value to be read as \"\" string, but got: %q", o.GenerateName)
    	}
    	if o.Generation != 0 {
    		t.Errorf("expected null json generation value to be read as zero, but got: %q", o.Generation)
    	}
    	if got, expected := o.Labels, map[string]string{"foo": ""}; !reflect.DeepEqual(got, expected) {
    		t.Errorf("unexpected labels, expected=%#v, got=%#v", expected, got)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    [[sec:hooking_into_the_eclipse_generation_lifecycle]]
    === Hooking into the generation lifecycle
    
    The Eclipse plugins provide objects modeling the sections of the Eclipse files that are generated by Gradle. The generation lifecycle is as follows:
    
    . The file is read; or a default version provided by Gradle is used if it does not exist
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. pkg/registry/batch/cronjob/strategy.go

    	// Any changes to the spec increment the generation number.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !apiequality.Semantic.DeepEqual(newCronJob.Spec, oldCronJob.Spec) {
    		newCronJob.Generation = oldCronJob.Generation + 1
    	}
    }
    
    // Validate validates a new scheduled job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlan.java

    import java.io.File;
    
    /**
     * Models information relevant to generation of a particular Antlr grammar file.
     */
    public class GenerationPlan {
        private final File source;
        private final File generationDirectory;
    
        private File importVocabTokenTypesDirectory;
        private boolean outOfDate;
    
        /**
         * Instantiates a generation plan.
         *
         * @param source The grammar file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pkg/registry/networking/ingress/strategy.go

    	// Any changes to the spec increment the generation number, any changes to the
    	// status should reflect the generation number of the corresponding object.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !apiequality.Semantic.DeepEqual(oldIngress.Spec, newIngress.Spec) {
    		newIngress.Generation = oldIngress.Generation + 1
    	}
    
    }
    
    // Validate validates ingresses on create.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 01:42:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/CompositeInstrumentationCodeGenerator.java

        public CompositeInstrumentationCodeGenerator(Collection<InstrumentationCodeGenerator> generators) {
            this.generators = generators;
        }
    
        @Override
        public GenerationResult generateCodeForRequestedInterceptors(Collection<CallInterceptionRequest> interceptionRequests) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top