Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 381 for Unregistered (0.21 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListeners.java

     * Allows the registration of {@link WorkInputListener work input listeners}.
     */
    @ServiceScope(Global.class)
    public interface WorkInputListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(WorkInputListener)}.
         */
        void addListener(WorkInputListener listener);
    
        void removeListener(WorkInputListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        return "Decompose TF ops with the registered composition library.";
      }
    
      void runOnOperation() override;
    
     private:
      // Apply canonicalization, mainly constant folding, on the function.
      void ApplyCanonicalization();
    
      // Rewrite unregistered TF ops to TFR func call ops. Return failure if all the
      // ops are registered or the compose function doesn't exist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/FileChangeListeners.java

     * child scopes of the user home scope.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface FileChangeListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(FileChangeListener)}.
         */
        void addListener(FileChangeListener listener);
    
        void removeListener(FileChangeListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

        /**
         * Removes a listener.  A single object can implement multiple interfaces, and all interfaces are unregistered by a
         * single invocation of this method.  There is no order dependency: if a broadcaster has already been made for type
         * T, the listener will be unregistered with it if <code>(listener instanceof T)</code> returns true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      bool restrict_functionalization_to_compiled_nodes = false;
      // If true, enables shape inference on input.
      // TODO(jpienaar): This will be removed shortly.
      bool enable_shape_inference = true;
      // _output_shapes is an unregistered attribute which is used during
      // GraphConstructor::ConvertGraph to override shapes. It is unfortunately
      // not always set correctly (which is undesirable and should be addressed)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/internal/trace/testtrace/validation.go

    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    			// Validate sched context.
    			if new.Executing() {
    				ctx := v.getOrCreateThread(e, ev, ev.Thread())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/netpoll_kqueue.go

    	addWakeupEvent(kq)
    }
    
    func netpollopen(fd uintptr, pd *pollDesc) int32 {
    	// Arm both EVFILT_READ and EVFILT_WRITE in edge-triggered mode (EV_CLEAR)
    	// for the whole fd lifetime. The notifications are automatically unregistered
    	// when fd is closed.
    	var ev [2]keventt
    	*(*uintptr)(unsafe.Pointer(&ev[0].ident)) = fd
    	ev[0].filter = _EVFILT_READ
    	ev[0].flags = _EV_ADD | _EV_CLEAR
    	ev[0].fflags = 0
    	ev[0].data = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    // removePlugin is called whenever a plugin has been unregistered.
    func (c *nodeResourcesController) removePlugin(driverName string) {
    	if c == nil {
    		return
    	}
    
    	klog.FromContext(c.ctx).V(2).Info("Removing plugin", "driverName", driverName)
    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    	if active, ok := c.activePlugins[driverName]; ok {
    		active.cancel(errors.New("plugin has unregistered"))
    		delete(c.activePlugins, driverName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/runtime/lock_sema.go

    			}
    		}
    		gp.m.blocked = false
    		return true
    	}
    
    	deadline = nanotime() + ns
    	for {
    		// Registered. Sleep.
    		gp.m.blocked = true
    		if *cgo_yield != nil && ns > 10e6 {
    			ns = 10e6
    		}
    		if semasleep(ns) >= 0 {
    			gp.m.blocked = false
    			// Acquired semaphore, semawakeup unregistered us.
    			// Done.
    			return true
    		}
    		if *cgo_yield != nil {
    			asmcgocall(*cgo_yield, nil)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    				if plugin.SocketPath == socketPath {
    					return false, nil
    				}
    			}
    			return true, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf("Timed out waiting for plugin to be unregistered:\n%s.", socketPath)
    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top