Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 997 for registerKey (0.3 sec)

  1. pkg/kubelet/cm/dra/plugin/plugins_store.go

    import (
    	"sync"
    
    	"k8s.io/klog/v2"
    )
    
    // PluginsStore holds a list of DRA Plugins.
    type pluginsStore struct {
    	sync.RWMutex
    	store map[string]*plugin
    }
    
    // draPlugins map keeps track of all registered DRA plugins on the node
    // and their corresponding sockets.
    var draPlugins = &pluginsStore{}
    
    // Get lets you retrieve a DRA Plugin by name.
    // This method is protected by a mutex.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 13:11:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "${MapProperty.name}<String, Number>" | "objects.mapProperty(String, Number); v.set([a: 12])" | "objects.mapProperty(String, Number); v.set([a: 10])"        | null
        }
    
        def "null input properties registered via TaskInputs.property are not allowed"() {
            expectReindentedValidationMessage()
            buildFile << """
                task test {
                    inputs.property("input", { null })
                    doLast {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/cache/actual_state_of_world.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    /*
    Package cache implements data structures used by the kubelet plugin manager to
    keep track of registered plugins.
    */
    package cache
    
    import (
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    )
    
    // ActualStateOfWorld defines a set of thread-safe operations for the kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 21:20:24 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/cc/training/coordinator.h

      /// problems. Note, the coordinator would not start these threads; they are
      /// supposed to be in running state when they are registered here.
      Status RegisterRunner(std::unique_ptr<RunnerInterface> runner);
    
      /// Returns true iff all the registered runners have been stopped.
      bool AllRunnersStopped();
    
      /// Requests all running threads to stop.
      Status RequestStop();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. releasenotes/notes/48089.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 44640
    releaseNotes:
    - |
      **Fixed** slow cleanup of auto-registered `WorkloadEntry` resources
      when auto-registration and cleanup should occur shortly after the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 00:37:00 UTC 2023
    - 277 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

        op_def = op_def_registry.get(op_name)
        if op_def:
          if len(all_dec_args) > 1:
            # Op has been registered, so it is a user error to specify op def.
            raise ValueError('Op has been registered: ' + op_name)
          else:
            # Op has been registered, then we don't need to generate register code.
            return
    
        # Validates the function inputs match what are in the decorator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    				if forget != nil {
    					t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    				}
    				return
    			}
    
    			if forget == nil {
    				t.Errorf("watch should be registered, got: %v", forget)
    				return
    			}
    			if count := watchTracker.watchCount[*testCase.expected]; count != 1 {
    				t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    			}
    			forget()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /*-------------------------------------------------------------------- 
     * Functions for running registered tests and suites.
     *--------------------------------------------------------------------*/
    CU_EXPORT CU_ErrorCode CU_run_all_tests(void);
    /**< 
     *  Runs all tests in all suites registered in the test registry.
     *  The suites are run in the order registered in the test registry.
     *  For each suite, it is first checked to make sure it is active.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * indeed receives file system events from the operating system.
     * This is to avoid trusting locations where OSs silently not send any events, despite watchers being registered.
     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
     * That only happens when the hierarchy is actually read or written by Gradle, in which case
     * {@link #armWatchProbe(File)} is called.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/globalflags_linux.go

    	// e2e node tests rely on this
    	register(global, local, "housekeeping_interval")
    
    	// These flags were implicit from cadvisor, and are mistakes that should be registered deprecated:
    	const deprecated = "This is a cadvisor flag that was mistakenly registered with the Kubelet. Due to legacy concerns, it will follow the standard CLI deprecation timeline before being removed."
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 20:15:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top