Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Negate (0.34 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				{Name: "node-a", Score: 66},
    				{Name: "node-b", Score: 100},
    				{Name: "node-c", Score: 100},
    			},
    			enableNodeInclusionPolicy: true,
    		},
    		{
    			name: "matchLabelKeys ignored when feature gate disabled",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").Label("baz", "").
    				SpreadConstraint(1, "zone", v1.ScheduleAnyway, fooSelector, nil, nil, nil, []string{"baz"}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				// then the pod status we get will not have the timestamp set.
    				// e.g. CI job 'pull-kubernetes-e2e-gce-alpha-features' will runs with
    				// features gate enabled, which includes Evented PLEG, but uses the
    				// runtime without Evented PLEG support.
    				klog.V(4).InfoS("Runtime does not set pod status timestamp", "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// so resource intensive daemonsets should take into account that they may
    	// cause evictions during disruption.
    	// This is an alpha field and requires enabling DaemonSetUpdateSurge feature gate.
    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DaemonSetSpec is the specification of a daemon set.
    type DaemonSetSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    #ifdef __INTEL_COMPILER
    # define GTEST_AMBIGUOUS_ELSE_BLOCKER_
    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    #ifdef __INTEL_COMPILER
    # define GTEST_AMBIGUOUS_ELSE_BLOCKER_
    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller_test.go

    		},
    		// in reality this is a misconfigured cluster
    		// i.e user is not using dual stack and have PodIP == v4 and ServiceIP==v6
    		// previously controller could assign wrong ip to endpoint address
    		// with gate removed. this is no longer the case. this is *not* behavior change
    		// because previously things would have failed in kube-proxy anyway (due to editing wrong iptables).
    		{
    			name:       "v6 service, in a v4 only cluster.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	// by a worker after the first sync (meaning it can't be running yet) or after
    	// all running containers are stopped.
    	// TODO: Once pod logs are separated from running containers, this method should
    	// be used to gate whether containers are kept.
    	//
    	// Intended for use by subsystem sync loops to know when to start tearing down
    	// resources that are used by running containers. Callers should ensure that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top