Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for mainTest (0.12 sec)

  1. pkg/wasm/imagefetcher.go

    		}
    
    		if manifest.MediaType == types.DockerManifestSchema2 {
    			// This case, assume we have docker images with "application/vnd.docker.distribution.manifest.v2+json"
    			// as the manifest media type. Note that the media type of manifest is Docker specific and
    			// all OCI images would have an empty string in .MediaType field.
    			ret, err := extractDockerImage(img)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

            assert file("Package.swift").text.contains('"src/main/cpp/main.cpp"')
            assert file("Package.swift").text.contains('"src/main/cpp/lib.cpp"')
        }
    
        @ToBeFixedForConfigurationCache
        def "regenerates manifest when Swift source files added or removed"() {
            given:
            swiftBuild()
    
            when:
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskSkipped(":generateSwiftPmManifest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/ClassPath.java

          File jarFile, @CheckForNull Manifest manifest) {
        if (manifest == null) {
          return ImmutableSet.of();
        }
        ImmutableSet.Builder<File> builder = ImmutableSet.builder();
        String classpathAttribute =
            manifest.getMainAttributes().getValue(Attributes.Name.CLASS_PATH.toString());
        if (classpathAttribute != null) {
          for (String path : CLASS_PATH_ATTRIBUTE_SEPARATOR.split(classpathAttribute)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  4. operator/pkg/verifier/verifier.go

    	if len(errs) > 0 {
    		return 0, 0, 0, errs.ToError()
    	}
    
    	builder := resource.NewBuilder(v.client.UtilFactory()).ContinueOnError().Unstructured()
    	for cat, manifest := range manifests {
    		for i, manitem := range manifest {
    			reader := strings.NewReader(manitem)
    			pseudoFilename := fmt.Sprintf("%s:%d generated from %s", cat, i, filename)
    			builder = builder.Stream(reader, pseudoFilename)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. build/lib/release.sh

      local dst_dir="${release_stage}/gci-trusty"
      mkdir -p "${dst_dir}"
      cp "${src_dir}/kube-proxy.manifest" "${dst_dir}/"
      cp "${src_dir}/cluster-autoscaler.manifest" "${dst_dir}/"
      cp "${src_dir}/etcd.manifest" "${dst_dir}"
      cp "${src_dir}/kube-scheduler.manifest" "${dst_dir}"
      cp "${src_dir}/kube-apiserver.manifest" "${dst_dir}"
      cp "${src_dir}/konnectivity-server.yaml" "${dst_dir}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    )
    
    func TestCompileManifests(t *testing.T) {
    	replicas := int32(coreDNSReplicas)
    	var tests = []struct {
    		name     string
    		manifest string
    		data     interface{}
    	}{
    		{
    			name:     "CoreDNSDeployment manifest",
    			manifest: CoreDNSDeployment,
    			data: struct {
    				DeploymentName, Image, ControlPlaneTaintKey string
    				Replicas                                    *int32
    			}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_all.txt

    	example.com/u v0.1.0 => ./u
    	example.com/w v0.1.0 => ./w
    	example.com/x v0.1.0 => ./x
    )
    -- main.go --
    package main
    
    import _ "example.com/a"
    
    func main() {}
    -- main_test.go --
    package main_test
    
    import _ "example.com/t"
    -- testonly/testonly_test.go --
    package testonly_test
    
    import _ "example.com/q"
    -- a/go.mod --
    module example.com/a
    
    go 1.15
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  8. operator/pkg/object/objects.go

    	return usList
    }
    
    // ParseK8sObjectsFromYAMLManifest returns a K8sObjects representation of manifest.
    func ParseK8sObjectsFromYAMLManifest(manifest string) (K8sObjects, error) {
    	return ParseK8sObjectsFromYAMLManifestFailOption(manifest, true)
    }
    
    // ParseK8sObjectsFromYAMLManifestFailOption returns a K8sObjects representation of manifest. Continues parsing when a bad object
    // is found if failOnError is set to false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  9. operator/cmd/mesh/install.go

    }
    
    // InstallCmdWithArgs generates an Istio install manifest and applies it to a cluster
    func InstallCmdWithArgs(ctx cli.Context, rootArgs *RootArgs, iArgs *InstallArgs) *cobra.Command {
    	ic := &cobra.Command{
    		Use:     "install",
    		Short:   "Applies an Istio manifest, installing or reconfiguring Istio on a cluster.",
    		Long:    "The install command generates an Istio install manifest and applies it to a cluster.",
    		Aliases: []string{"apply"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                                .getResources("META-INF/MANIFEST.MF")
                        while (resources.hasMoreElements()) {
                            InputStream inputStream = resources.nextElement().openStream()
                            Manifest manifest = new Manifest(inputStream)
                            java.util.jar.Attributes mainAttributes = manifest.getMainAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top