Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for plugin_map (0.2 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		expected_op_map := tc.expected_attaches
    		plugin_map := testPlugin.GetAttachedVolumes()
    		verify_op := "attach"
    		volFound, nodeFound := false, false
    		for i := 0; i <= 1; i++ { // verify attaches and detaches
    			if i == 1 {
    				expected_op_map = tc.expected_detaches
    				plugin_map = testPlugin.GetDetachedVolumes()
    				verify_op = "detach"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java

            getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            Map pluginMap = project1.getBuild().getPluginsAsMap();
            Plugin compilerPlugin = (Plugin) pluginMap.get("org.apache.maven.plugins:maven-compiler-plugin");
    
            assertNotNull(compilerPlugin);
    
            Map executionMap = compilerPlugin.getExecutionsAsMap();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    				newPlugins = reflect.Append(newPlugins, reflect.ValueOf(f.pluginsMap[name]))
    				enabledSet.delete(name)
    			}
    		}
    		// part 2
    		for _, name := range multiPointEnabled.list {
    			newPlugins = reflect.Append(newPlugins, reflect.ValueOf(f.pluginsMap[name]))
    		}
    		// part 3
    		for _, name := range enabledSet.list {
    			newPlugins = reflect.Append(newPlugins, reflect.ValueOf(f.pluginsMap[name]))
    		}
    		plugins.Set(newPlugins)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

      return OkStatus();
    }
    
    // Checks if the plugin and core API numbers match, logging mismatches.
    static void CheckAPI(int plugin_API, int core_API, StringPiece where) {
      if (plugin_API != core_API) {
        VLOG(0) << "Plugin API (" << plugin_API << ") for " << where
                << " operations doesn't match expected core API (" << core_API
                << "). Plugin will be loaded but functionality might be missing.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
        volatile Map<String, Plugin> pluginMap;
    
        /**
         * @return a Map of plugins field with {@code Plugins#getKey()} as key
         * @see Plugin#getKey()
         */
        public Map<String, Plugin> getPluginsAsMap() {
            if (pluginMap == null) {
                synchronized (this) {
                    if (pluginMap == null) {
                        pluginMap = ImmutableCollections.copy(plugins.stream().collect(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    02026656536150207,"touches":3,"min_t":1238725189,"max_t":1248307041,"mean_t":1241919338},{"name":"plugin_channel_base.cc","kids":[],"cl_weight":0.02026656536150207,"touches":3,"min_t":1238725189,"max_t":1248307041,"mean_t":1241919338},{"name":"plugin_main.cc","kids":[],"cl_weight":0.08527648234510327,"touches":4,"min_t":1244675095,"max_t":1248307041,"mean_t":1245621719},{"name":"npobject_proxy.h","kids":[],"cl_weight":0.04026656536150207,"touches":4,"min_t":1232058311,"max_t":1248307041,"mean_t"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top