Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 973 for Meta (0.05 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

    import java.util.jar.Manifest
    
    class JarTestFixture extends ZipTestFixture {
        File file
    
        private final Lazy<Manifest> theManifest = Lazy.atomic().of {
            new Manifest(IOUtils.toInputStream(content('META-INF/MANIFEST.MF'), contentCharset as String))
        }
    
        /**
         * Asserts that the Jar file is well-formed.
         */
        JarTestFixture(File file, String metadataCharset = 'UTF-8', String contentCharset = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/kube/factory.go

    	vmSupport := true
    	if vmP := cfg.Meta.Bool(vmSupportMetaKey); vmP != nil {
    		vmSupport = *vmP
    	}
    
    	return &Cluster{
    		filename:  kubeconfigPath,
    		CLIClient: client,
    		vmSupport: vmSupport,
    		Topology:  topology,
    	}, nil
    }
    
    func validConfig(cfg cluster.Config) (cluster.Config, error) {
    	// only include kube-specific validation here
    	if cfg.Meta.String(kubeconfigMetaKey) == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	discovery "k8s.io/api/discovery/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/client-go/kubernetes"
    
    	"istio.io/api/label"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/meta/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/features"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-install-plugin/0.1/maven-install-plugin-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-install-plugin 0.1 install false true install Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    }
    
    var filterTestConfigs = []config.Config{
    	{
    		Meta: config.Meta{Name: "wasm-network-authz", Namespace: "istio-system", GroupVersionKind: gvk.WasmPlugin},
    		Spec: &extensions.WasmPlugin{
    			Phase: extensions.PluginPhase_AUTHZ,
    			Type:  extensions.PluginType_NETWORK,
    		},
    	},
    	{
    		Meta: config.Meta{Name: "wasm-network-authn", Namespace: "istio-system", GroupVersionKind: gvk.WasmPlugin},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

                return packageName.startsWith("org.gradle.")
            }
            if (name.equals("META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule")) {
                return true
            }
            if (name.equals("META-INF/services/org.codehaus.groovy.transform.ASTTransformation")) {
                return true
            }
            if (name.matches(Regex("META-INF/.*\\.kotlin_module"))) {
                return true
            }
            return false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions_test.go

    					ObservedGeneration: 1,
    					LastTransitionTime: lastTransitionTime,
    					Message:            "All references resolved",
    				},
    			},
    		},
    	}
    
    	httpRoute := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.HTTPRoute,
    			Namespace:        "foo",
    			Name:             "bar",
    			Generation:       1,
    		},
    		Spec: &httpRouteSpec,
    		Status: &k8s.HTTPRouteStatus{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/webhook/webhook.go

    func (a *Analyzer) Metadata() analysis.Metadata {
    	meta := analysis.Metadata{
    		Name:        "webhook.Analyzer",
    		Description: "Checks the validity of Istio webhooks",
    		Inputs: []config.GroupVersionKind{
    			gvk.MutatingWebhookConfiguration,
    		},
    	}
    	if !a.SkipServiceCheck {
    		meta.Inputs = append(meta.Inputs, gvk.Service)
    	}
    	return meta
    }
    
    func getNamespaceLabels() []klabels.Set {
    	return []klabels.Set{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/resources/META-INF/analysis-api/analysis-api-fe10.xml

    <idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
      <xi:include href="/META-INF/analysis-api/analysis-api-impl-base.xml"/>
    
      <xi:include href="/META-INF/extensions/compiler.xml"/>
    
      <extensionPoints>
        <extensionPoint
            qualifiedName="org.jetbrains.kotlin.declarationAttributeAltererExtension"
            interface="org.jetbrains.kotlin.extensions.DeclarationAttributeAltererExtension"
            area="IDEA_PROJECT"
        />
    
        <extensionPoint
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                    'org/gradle/MyBClass.class',
                    'org/gradle/MyFirstClass.class',
                    'META-INF/',
                    'META-INF/services/',
                    'META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices',
                    'META-INF/services/org.gradle.internal.other.Service',
                    'META-INF/.gradle-runtime-shaded']
            }
            outputJar.md5Hash == "898989a29248bd8e44197d087164496a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top