Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,451 for generations (0.22 sec)

  1. pkg/registry/admissionregistration/validatingwebhookconfiguration/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 !reflect.DeepEqual(oldIC.Webhooks, newIC.Webhooks) {
    		newIC.Generation = oldIC.Generation + 1
    	}
    }
    
    // Validate validates a new validatingWebhookConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/validatingadmissionpolicybinding/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(oldIC.Spec, newIC.Spec) {
    		newIC.Generation = oldIC.Generation + 1
    	}
    }
    
    // Validate validates a new ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/mutatingwebhookconfiguration/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 !reflect.DeepEqual(oldIC.Webhooks, newIC.Webhooks) {
    		newIC.Generation = oldIC.Generation + 1
    	}
    }
    
    // Validate validates a new mutatingWebhookConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pkg/registry/networking/networkpolicy/strategy.go

    	// See metav1.ObjectMeta description for more information on Generation.
    	if !reflect.DeepEqual(oldNetworkPolicy.Spec, newNetworkPolicy.Spec) {
    		newNetworkPolicy.Generation = oldNetworkPolicy.Generation + 1
    	}
    }
    
    // Validate validates a new NetworkPolicy.
    func (networkPolicyStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	networkPolicy := obj.(*networking.NetworkPolicy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-bare-m.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 956 bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/discovery.go

    	generators[v3.AddressType] = workloadGen
    	generators[v3.WorkloadType] = workloadGen
    	generators[v3.WorkloadAuthorizationType] = &xds.WorkloadRBACGenerator{Server: s}
    
    	generators["grpc"] = &grpcgen.GrpcConfigGenerator{}
    	generators["grpc/"+v3.EndpointType] = edsGen
    	generators["grpc/"+v3.ListenerType] = generators["grpc"]
    	generators["grpc/"+v3.RouteType] = generators["grpc"]
    	generators["grpc/"+v3.ClusterType] = generators["grpc"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1009 bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pkg/registry/apps/daemonset/strategy.go

    	// annotations etc) should also increment the generation.
    	if !apiequality.Semantic.DeepEqual(oldDaemonSet.Spec.Template, newDaemonSet.Spec.Template) {
    		newDaemonSet.Spec.TemplateGeneration = oldDaemonSet.Spec.TemplateGeneration + 1
    		newDaemonSet.Generation = oldDaemonSet.Generation + 1
    		return
    	}
    	if !apiequality.Semantic.DeepEqual(oldDaemonSet.Spec, newDaemonSet.Spec) {
    		newDaemonSet.Generation = oldDaemonSet.Generation + 1
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top