Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 962 for Handles (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        }
      }
      if_op.replaceAllUsesWith(new_if);
      if_op.erase();
      return success();
    }
    
    // Handles stack usage by a tf.StatefulPartitionedCall or a tf.PartitionedCall.
    // It will first check if the callee was previously handled, and try to reuse
    // that result if so. Otherwise, it will clone and convert the callee function,
    // and performs stack ops decomposition on it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. pkg/kubelet/preemption/preemption.go

    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const message = "Preempted in order to admit critical pod"
    
    // CriticalPodAdmissionHandler is an AdmissionFailureHandler that handles admission failure for Critical Pods.
    // If the ONLY admission failures are due to insufficient resources, then CriticalPodAdmissionHandler evicts pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/worker.go

    	"k8s.io/component-base/metrics"
    	"k8s.io/klog/v2"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/prober/results"
    )
    
    // worker handles the periodic probing of its assigned container. Each worker has a go-routine
    // associated with it which runs the probe loop until the container permanently terminates, or the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    func (o *objectCountEvaluator) Constraints(required []corev1.ResourceName, item runtime.Object) error {
    	// no-op for object counting
    	return nil
    }
    
    // Handles returns true if the object count evaluator needs to track this attributes.
    func (o *objectCountEvaluator) Handles(a admission.Attributes) bool {
    	operation := a.GetOperation()
    	return operation == admission.Create
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                "Flow actions must belong to a Flow scope!"
            }
            return owner
        }
    }
    
    
    /**
     * Handles Provider instances seen in the object graph, and delegates to another codec that handles the value.
     */
    class ProviderCodec(
        private val providerCodec: FixedValueReplacingProviderCodec
    ) : Codec<ProviderInternal<*>> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    			err = errors.NewBadRequest(err.Error())
    			scope.err(err, w, req)
    			return
    		}
    		if admit != nil && admit.Handles(admission.Connect) {
    			userInfo, _ := request.UserFrom(ctx)
    			// TODO: remove the mutating admission here as soon as we have ported all plugin that handle CONNECT
    			if mutatingAdmission, ok := admit.(admission.MutationInterface); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            e.message == "Option 'stringValue' on method cannot take multiple parameters in class 'org.gradle.api.internal.tasks.options.OptionReaderTest\$TestClass4#setStrings'."
        }
    
        def "handles field options"() {
            when:
            List<InstanceOptionDescriptor> options = TaskOptionsGenerator.generate(new TestClassWithFields(), reader).getAll()
            then:
            options[0].name == "customOptionName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_base.go

    func (ctrl *PersistentVolumeController) storeClaimUpdate(logger klog.Logger, claim interface{}) (bool, error) {
    	return storeObjectUpdate(logger, ctrl.claims, claim, "claim")
    }
    
    // updateVolume runs in worker thread and handles "volume added",
    // "volume updated" and "periodic sync" events.
    func (ctrl *PersistentVolumeController) updateVolume(ctx context.Context, volume *v1.PersistentVolume) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    func IsNotMarshalable(err error) bool {
    	_, ok := err.(errNotMarshalable)
    	return err != nil && ok
    }
    
    // NewSerializer creates a Protobuf serializer that handles encoding versioned objects into the proper wire form. If a typer
    // is passed, the encoded object will have group, version, and kind fields set. If typer is nil, the objects will be written
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            when:
            outputs.snapshot()
            source "class A { /* change */ }"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses('A', 'B')
        }
    
        def "handles multiple compile tasks within a single project"() {
            source "class A {}", "class B extends A {}"
            file("src/integTest/${languageName}/X.${languageName}") << "class X {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top