Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for plfeature (0.39 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/klog/v2/ktesting"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    	}{
    		{
    			description:                  "oldPod.FSGroupChangePolicy=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          nofsGroupPod,
    			newPodHasFSGroupChangePolicy: true,
    			expectPolicyInPod:            true,
    		},
    		{
    			description:                  "oldPod=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          func() *api.Pod { return nil },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

    		that will test the REST endpoint to ensure it is working.
    	</p>
    	<p>
    		For the complete feature documentation, see the <a
    			href="http://www.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.wlp.nd.multiplatform.doc/ae/rwlp_feat.html%23rwlp_feat__jaxrs-2.0">jaxrs-2.0</a>
    		feature description in IBM Knowledge Center.
    	</p>
    </div>
    <div id="technologies">
        
        </div>
    </body>
    </html>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			logger, _ := ktesting.NewTestContext(t)
    			featuregatetesting.SetFeatureGateDuringTest(t, feature.DefaultFeatureGate, features.PodIndexLabel, !tc.podIndexLabelDisabled)
    			featuregatetesting.SetFeatureGateDuringTest(t, feature.DefaultFeatureGate, features.JobPodReplacementPolicy, tc.jobPodReplacementPolicy)
    			featuregatetesting.SetFeatureGateDuringTest(t, feature.DefaultFeatureGate, features.JobPodFailurePolicy, tc.jobPodFailurePolicy)
    			// job manager setup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        LLVM_DEBUG(llvm::dbgs() << "Expected kernel input feature == 2. Got: "
                                << kernel_input_feature_dim << ".\n");
        return failure();
      }
    
      const int64_t kernel_output_feature_dim =
          dimension_numbers.getKernelOutputFeatureDimension();
      if (kernel_output_feature_dim != 3) {
        LLVM_DEBUG(llvm::dbgs() << "Expected kernel output feature == 3. Got: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        params+=("--configure-cloud-routes=false")
      fi
      if [[ -n "${FEATURE_GATES:-}" ]]; then
        # remove non-GCP feature gates, since the CCM will early exit
        # if given a feature gate it doesn't recognize
        echo "Setting feature gates for cloud provider controller-manager from ${CCM_FEATURE_GATES}"
        local CCM_FEATURE_GATES_FILTER
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    				features.UserNamespacesSupport, err)
    		}
    		if kernelVersion != nil && !kernelVersion.AtLeast(version.MustParseGeneric(utilkernel.UserNamespacesSupportKernelVersion)) {
    			klog.InfoS("WARNING: the kernel version is incompatible with the feature gate, which needs as a minimum kernel version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    	schedulerapi "k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/defaultbinder"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/imagelocality"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/nodeports"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/noderesources"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //   - For GOARCH=wasm, GOWASM=satconv and signext
    //     correspond to the wasm.satconv and wasm.signext feature build tags.
    //
    // For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    // sets the feature build tags for all previous levels as well.
    // For example, GOAMD64=v2 sets the amd64.v1 and amd64.v2 feature flags.
    // This ensures that code making use of v2 features continues to compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "stdin": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top