Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for plugin1 (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // pluginArtifacts
                Set<Artifact> pluginArtifacts = new HashSet<>();
                for (Plugin plugin : project.getModel().getDelegate().getBuild().getPlugins()) {
                    Artifact artifact = repositorySystem.createPluginArtifact(new org.apache.maven.model.Plugin(plugin));
    
                    if (artifact != null) {
                        pluginArtifacts.add(artifact);
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	for _, ns := range lookupInNamespaces {
    		if wasmPlugins, ok := ps.wasmPluginsByNamespace[ns]; ok {
    			for _, plugin := range wasmPlugins {
    				if plugin.MatchListener(selectionOpts, info) && plugin.MatchType(pluginType) {
    					matchedPlugins[plugin.Phase] = append(matchedPlugins[plugin.Phase], plugin)
    				}
    			}
    		}
    	}
    
    	// sort slices by priority
    	for i, slice := range matchedPlugins {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.api.internal.initialization.ScriptHandlerFactory;
    import org.gradle.api.internal.initialization.ScriptHandlerInternal;
    import org.gradle.api.internal.plugins.DefaultObjectConfigurationAction;
    import org.gradle.api.internal.plugins.ExtensionContainerInternal;
    import org.gradle.api.internal.plugins.PluginManagerInternal;
    import org.gradle.api.internal.project.taskfactory.TaskInstantiator;
    import org.gradle.api.internal.tasks.TaskContainerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.jar (org:foo:1.0) in repository 'maven': Artifact was signed with key 'D7BF96A169F77B28C934AB1614F53F0824875D73' (Gradle Test (This is used for testing the gradle-signing-plugin) <******@****.***>) but signature didn't match
    
    This can indicate that a dependency has been compromised. Please carefully verify the signatures and checksums."""
            }
            assertConfigCacheDiscarded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter_test.go

    						},
    					},
    				}),
    			},
    			want: true,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			c := &csiMountMgr{
    				plugin:              tt.fields.plugin,
    				driverName:          tt.fields.driverName,
    				volumeLifecycleMode: tt.fields.volumeLifecycleMode,
    				volumeID:            tt.fields.volumeID,
    				specVolumeID:        tt.fields.specVolumeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.apache.ivy.core.module.id.ArtifactId;
    import org.apache.ivy.core.module.id.ModuleId;
    import org.apache.ivy.core.module.id.ModuleRevisionId;
    import org.apache.ivy.plugins.matcher.PatternMatcher;
    import org.apache.ivy.plugins.namespace.Namespace;
    import org.apache.ivy.plugins.parser.xml.XmlModuleDescriptorParser;
    import org.apache.ivy.util.extendable.DefaultExtendableItem;
    import org.apache.ivy.util.url.URLHandlerRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The name of the CNI plugin configuration file. Defaults to istio-cni.conf.
      string cniConfFileName = 8;
    
      // The directory path within the cluster node's filesystem where network namespaces are located.
      // Defaults to '/var/run/netns', in minikube/docker/others can be '/var/run/docker/netns'.
      string cniNetnsDir = 31;
    
      // List of namespaces that should be ignored by the CNI plugin.
      repeated string excludeNamespaces = 9;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha1_AdmissionConfiguration_To_apiserver_AdmissionConfiguration(in *AdmissionConfiguration, out *apiserver.AdmissionConfiguration, s conversion.Scope) error {
    	out.Plugins = *(*[]apiserver.AdmissionPluginConfiguration)(unsafe.Pointer(&in.Plugins))
    	return nil
    }
    
    // Convert_v1alpha1_AdmissionConfiguration_To_apiserver_AdmissionConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/publishing/rules.yaml

        - repository: client-go
          branch: release-1.30
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cli-runtime
      library: true
    - destination: sample-cli-plugin
      branches:
      - name: master
        dependencies:
        - repository: api
          branch: master
        - repository: apimachinery
          branch: master
        - repository: cli-runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	"--enable-dynamic-provisioning=false",
    	"--enable-garbage-collector=false",
    	"--enable-hostpath-provisioner=true",
    	"--cluster-signing-duration=10h",
    	"--flex-volume-plugin-dir=/flex-volume-plugin",
    	"--horizontal-pod-autoscaler-sync-period=45s",
    	"--horizontal-pod-autoscaler-downscale-stabilization=3m",
    	"--horizontal-pod-autoscaler-cpu-initialization-period=90s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top