Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 264 for handle1_ (1.4 sec)

  1. pkg/scheduler/eventhandlers_test.go

    		gvkMap                 map[framework.GVK]framework.ActionType
    		expectStaticInformers  map[reflect.Type]bool
    		expectDynamicInformers map[schema.GroupVersionResource]bool
    	}{
    		{
    			name:   "default handlers in framework",
    			gvkMap: map[framework.GVK]framework.ActionType{},
    			expectStaticInformers: map[reflect.Type]bool{
    				reflect.TypeOf(&v1.Pod{}):       true,
    				reflect.TypeOf(&v1.Node{}):      true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

         * </ul>
         *
         * <p>The given handler does not need to be thread-safe, and is notified by at most one thread at a time. Multiple handlers can be added for a given channel.</p>
         *
         * <p>NOTE: If any method of the handler fails with an exception, the handler is discarded and will receive no further notifications.</p>
         */
        public void addHandler(String channelName, Object handler) {
            lock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/runtime/signal_windows.go

    	ep.context.set_sp(gp.m.g0.sched.sp)
    	ep.context.set_ip(abi.FuncPCABI0(sigresume))
    	return ret
    }
    
    // Called by sigtramp from Windows VEH handler.
    // Return value signals whether the exception has been handled (EXCEPTION_CONTINUE_EXECUTION)
    // or should be made available to other handlers in the chain (EXCEPTION_CONTINUE_SEARCH).
    //
    // This is nosplit to avoid growing the stack until we've checked for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    func (c *Controller) AppendServiceHandler(f model.ServiceHandler) {
    	c.handlers.AppendServiceHandler(f)
    }
    
    // AppendWorkloadHandler implements a service catalog operation
    func (c *Controller) AppendWorkloadHandler(f func(*model.WorkloadInstance, model.Event)) {
    	c.handlers.AppendWorkloadHandler(f)
    }
    
    // AppendNamespaceDiscoveryHandlers register handlers on namespace selected/deselected by discovery selectors change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/mlrt/async_while.mlir

    // CHECK-LABEL: func.func private @"sort_map/while_cond"
    func.func private @"sort_map/while_cond"(%loop_count: tensor<i32>, %max_iterations: tensor<i32>, %handle: tensor<?x!tf_type.resource>, %flow_in: tensor<*xf32>, %matrix: tensor<3x3xf32>, %handle_2: tensor<?x!tf_type.resource>, %flow_in_2: tensor<*xf32>, %matrix_2: tensor<3x3xf32>, %bound: tensor<i32>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package handlers
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"strings"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/adsc/delta_test.go

    	})
    	secretsHandler := Register(func(ctx HandlerContext, resourceName string, resourceVersion string, resourceEntity *tls.Secret, event Event) {
    	})
    
    	handlers := []Option{
    		clusterHandler,
    		Watch[*cluster.Cluster]("*"),
    		listenerHandler,
    		Watch[*listener.Listener]("*"),
    		endpointsHandler,
    		routesHandler,
    		secretsHandler,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/optimize_tf_control_flow_side_effect.mlir

      %handle = "tf.HashTableV2"() {container = "", key_dtype = i32, shared_name = "hash_table", use_node_name_sharing = false, value_dtype = i32} : () -> tensor<!tf_type.resource>
      // CHECK: tf.While
      // CHECK-SAME: is_stateless = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 01:15:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    	if handler == _SIG_IGN || (handler == _SIG_DFL && flags&_SigIgn != 0) {
    		return
    	}
    
    	// Reset the signal handler and raise the signal.
    	// We are currently running inside a signal handler, so the
    	// signal is blocked. We need to unblock it before raising the
    	// signal, or the signal we raise will be ignored until we return
    	// from the signal handler. We know that the signal was unblocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            if (workPlan.empty) {
                return;
            }
            state.transition(State.TaskSchedule, State.ReadyToRun, () -> {
                for (Consumer<LocalTaskNode> handler : workPlan.handlers) {
                    workPlan.plan.onComplete(handler);
                }
                workPlan.finalizedPlan = workPreparer.finalizeWorkGraph(gradle, workPlan.plan);
            });
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top