Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for dra_plugin (0.21 sec)

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

    	defer func() {
    		err := conn.Close()
    		if err != nil {
    			t.Error(err)
    		}
    	}()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// ensure the plugin we are using is registered
    	draPlugins.add("dummy-plugin", p)
    	defer draPlugins.delete("dummy-plugin")
    
    	// we call `NodePrepareResource` 2 times and check whether a new connection is created or the same is reused
    	for i := 0; i < 2; i++ {
    		wg.Add(1)
    		go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    <<application_plugin.adoc#application_plugin,Application>>::
    Provides support for building JVM-based, runnable applications.
    
    <<war_plugin.adoc#war_plugin,WAR>>::
    Provides support for building and packaging WAR-based Java web applications.
    
    <<ear_plugin.adoc#ear_plugin,EAR>>::
    Provides support for building and packaging Java EE applications.
    
    <<publishing_maven.adoc#publishing_maven,Maven Publish>>::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    // 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.
    
    [[ear_plugin]]
    = The Ear Plugin
    
    The Ear plugin adds support for assembling web application EAR files.
    It adds a default EAR archive task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    // 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.
    
    [[war_plugin]]
    = The War Plugin
    
    The War plugin extends the <<java_plugin.adoc#java_plugin,Java plugin>> to add support for assembling web application WAR files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    // 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.
    
    [[idea_plugin]]
    = The IDEA Plugin
    
    WARNING: The IDEA Plugin is not compatible with the <<configuration_cache.adoc#config_cache:plugins:core,configuration cache>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    | <<war_plugin.adoc#war_plugin,War>>
    | Adds web application support to `.project` file.
    
    | <<ear_plugin.adoc#ear_plugin,Ear>>
    | Adds ear application support to `.project` file.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. .github/CODEOWNERS

    platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc         @gradle/bt-devrel-education @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc                  @gradle/bt-devrel-education @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc               @gradle/bt-devrel-education @gradle/bt-jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/plugins_store.go

    	"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.
    func (s *pluginsStore) get(pluginName string) *plugin {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 13:11:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/plugin.go

    	// all other DRA components will be able to get the actual socket of DRA plugins by its name.
    	// By default we assume the supported plugin version is v1alpha3
    	draPlugins.add(pluginName, pluginInstance)
    	h.controller.addPlugin(pluginName, pluginInstance)
    
    	return nil
    }
    
    func (h *RegistrationHandler) validateVersions(
    	callerName string,
    	pluginName string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    [[ides]]
    == IDEs
    
    Android Studio::
    As a variant of IntelliJ IDEA, https://developer.android.com/studio/[Android Studio] has built-in support for importing and building Gradle projects.
    You can also use the <<idea_plugin.adoc#idea_plugin,IDEA Plugin for Gradle>> to fine-tune the import process if that's necessary.
    +
    This IDE also has an https://developer.android.com/studio/intro/[extensive user guide] to help you get the most out of the IDE and Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top