Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 422 for idplugin (0.09 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-plugin-plugin</artifactId>
      <version>0.1</version>
      <packaging>maven-plugin</packaging>
    
      <name>Maven Integration Test Plugin</name>
      <description>
        A test plugin to assist testing of Maven core.
      </description>
      <inceptionYear>2009</inceptionYear>
    
      <distributionManagement>
        <repository>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. maven-plugin-api/src/test/resources/plugin.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plugin>
      <description>plugin-description</description>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-jar-plugin</artifactId>
      <version>2.3-SNAPSHOT</version>
      <goalPrefix>jar</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 16:05:24 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/method/plugin.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 241 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue18584/plugin.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 326 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/issue19529/plugin.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 171 bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"runtime/debug"
    	"strconv"
    	"time"
    
    	"github.com/containernetworking/cni/pkg/skel"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. samples/wasm_modules/header_injector/plugin.cc

    // 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.
    
    #include "plugin.h"
    
    #ifndef INJECTION_VERSION
    #error INJECTION_VERSION must be defined
    #endif // INJECTION_VERSION
    
    #define xstr(s) str(s)
    #define str(s) #s
    
    // Boilderplate code to register the extension implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/plugin.go

    	}
    	if md.typemap != nil {
    		return "", nil, nil, "plugin already loaded"
    	}
    
    	for _, pmd := range activeModules() {
    		if pmd.pluginpath == md.pluginpath {
    			md.bad = true
    			return "", nil, nil, "plugin already loaded"
    		}
    
    		if inRange(pmd.text, pmd.etext, md.text, md.etext) ||
    			inRange(pmd.bss, pmd.ebss, md.bss, md.ebss) ||
    			inRange(pmd.data, pmd.edata, md.data, md.edata) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/plugin.go

    	// response did not provide a cache duration for credentials.
    	defaultCacheDuration time.Duration
    
    	// plugin is the exec implementation of the credential providing plugin.
    	plugin Plugin
    
    	// lastCachePurge is the last time cache is cleaned for expired entries.
    	lastCachePurge time.Time
    }
    
    // cacheEntry is the cache object that will be stored in cache.Store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    var _ framework.EnqueueExtensions = &PodTopologySpread{}
    
    // Name is the name of the plugin used in the plugin registry and configurations.
    const Name = names.PodTopologySpread
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *PodTopologySpread) Name() string {
    	return Name
    }
    
    // New initializes a new plugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top