Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for gestures (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    }
    
    func TestWaitUntilWatchCacheFreshAndForceAllEvents(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.WatchList, true)
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ConsistentListFromCache, true)
    
    	scenarios := []struct {
    		name               string
    		opts               storage.ListOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      %0:2 = "tf.SoftmaxCrossEntropyWithLogits"(%features, %labels) : (tensor<f32>, tensor<?x?xf32>) -> (tensor<?xf32>, tensor<?x?xf32>)
      func.return %0#0, %0#1 : tensor<?xf32>, tensor<?x?xf32>
    }
    
    // CHECK-LABEL: SparseSoftmaxCrossEntropyWithLogits
    // CHECK-SAME: %[[FEATURES:.*]]: tensor<2x3xf32>, %[[SPARSE_LABELS:.*]]: tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// and disable sendingInitialEvents when the feature wasn't enabled
    	if !utilfeature.DefaultFeatureGate.Enabled(features.WatchList) && opts.SendInitialEvents != nil {
    		opts.SendInitialEvents = nil
    	}
    	// TODO: we should eventually get rid of this legacy case
    	if utilfeature.DefaultFeatureGate.Enabled(features.WatchFromStorageWithoutResourceVersion) && opts.SendInitialEvents == nil && opts.ResourceVersion == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	}
    	return list, false
    }
    
    func isPodFailed(p *v1.Pod, job *batch.Job) bool {
    	if feature.DefaultFeatureGate.Enabled(features.PodDisruptionConditions) && feature.DefaultFeatureGate.Enabled(features.JobPodFailurePolicy) && job.Spec.PodFailurePolicy != nil {
    		// When PodDisruptionConditions is enabled, orphan Pods and unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    		useRemoteAddress: features.UseRemoteAddress,
    		rds:              rdsName,
    
    		connectionManager: &hcm.HttpConnectionManager{
    			ServerName:                 ph.ServerName,
    			ServerHeaderTransformation: ph.ServerHeaderTransformation,
    			GenerateRequestId:          ph.GenerateRequestID,
    			Proxy_100Continue:          features.Enable100ContinueHeaders,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		if utilfeature.DefaultFeatureGate.Enabled(features.CPUManagerPolicyOptions) {
    			cpuManagerPolicyOptions = s.CPUManagerPolicyOptions
    		} else if s.CPUManagerPolicyOptions != nil {
    			return fmt.Errorf("CPU Manager policy options %v require feature gates %q, %q enabled",
    				s.CPUManagerPolicyOptions, features.CPUManager, features.CPUManagerPolicyOptions)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    				test.args.ScoringStrategy = defaultScoringStrategy
    			}
    
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    			p, err := NewFit(ctx, &test.args, nil, plfeature.Features{})
    			if err != nil {
    				t.Fatal(err)
    			}
    			cycleState := framework.NewCycleState()
    			_, preFilterStatus := p.(framework.PreFilterPlugin).PreFilter(ctx, cycleState, test.pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    
    		if idx == 0 && utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    			if resp.Timestamp == 0 {
    				// If the Evented PLEG is enabled in the kubelet, but not in the runtime
    				// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			// Just testing KMSv2 feature flag
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.KMSv1, true)
    
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.KMSv2, tt.kmsv2Enabled)
    
    			ctx, cancel := context.WithCancel(context.Background())
    			cancel() // cancel this upfront so the kms v2 checks do not block
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	"k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions"
    	"k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/client-go/util/jsonpath"
    
    	"k8s.io/kubernetes/pkg/apis/admissionregistration"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top