Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for plfeature (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            // integration test problems
            'deprecation:some-indirect-deprecation' : 'Some indirect deprecation has been deprecated.',
            'deprecation:some-invocation-feature' : 'Some invocation feature has been deprecated.',
            'deprecation:thing' : 'Thing has been deprecated.',
            'deprecation:typed-task' : 'Typed task has been deprecated.',
            'generic:deprecation:plugin' : 'DisplayName',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsBuildFeatureIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsBuildFeatureIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
    
        def "build feature indicates requested and active status"() {
            buildFile """
                import org.gradle.api.configuration.BuildFeatures
    
                def buildFeatures = gradle.services.get(BuildFeatures)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K 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/quantization/lite/quantize_weights.h

    // type is flatbuffer but is converted to MLIR during quantization process and
    // then converted back to flatbuffer for return. Note that this is part of
    // reaching feature parity with the old quantizer for dynamic range
    // quantization, specifically for
    // third_party/tensorflow/lite/tools/optimize/quantize_weights.h.
    // TODO(b/202468183): Selective quantization + quant debugger support for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val enabledFeatures = FeaturePreviews.Feature.values().filter { featureFlags.isEnabledWithApi(it) }
            writeCollection(enabledFeatures)
        }
    
        private
        suspend fun DefaultReadContext.readPreviewFlags(gradle: GradleInternal) {
            val featureFlags = gradle.serviceOf<FeatureFlags>()
            readCollection {
                val enabledFeature = read() as FeaturePreviews.Feature
                featureFlags.enable(enabledFeature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. pkg/controller/job/success_policy_test.go

    limitations under the License.
    */
    
    package job
    
    import (
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	batch "k8s.io/api/batch/v1"
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    func TestMatchSuccessPolicy(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    
    	units "github.com/docker/go-units"
    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/validation"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	schedutil "k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    var _ framework.PreFilterPlugin = &Fit{}
    var _ framework.FilterPlugin = &Fit{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. configure.py

        query_item: string for feature related to the variable, e.g. "CUDA for
          Nvidia GPUs".
        enabled_by_default: boolean for default behavior.
        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
    
      Returns:
        boolean value of the variable.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top