Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for mainTest (0.27 sec)

  1. operator/cmd/mesh/uninstall.go

    	"istio.io/istio/istioctl/pkg/tag"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/translate"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/operator/pkg/util/progress"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/wasm/cache_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	img, err := mutate.Append(empty.Image, mutate.Addendum{Layer: l})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Set manifest type.
    	manifest, err := img.Manifest()
    	if err != nil {
    		t.Fatal(err)
    	}
    	manifest.MediaType = types.DockerManifestSchema2
    
    	// Push image to the registry.
    	err = crane.Push(img, ref, fetchOpt)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        }
    
        protected void assertIsGradleJar(TestFile jar) {
            jar.assertIsFile()
            assertThat(jar.name, jar.manifest.mainAttributes.getValue('Implementation-Version'), equalTo(baseVersion))
            assertThat(jar.name, jar.manifest.mainAttributes.getValue('Implementation-Title'), equalTo('Gradle'))
        }
    
        private static void assertIsGradleApiMetadataJar(TestFile jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. pkg/wasm/imagefetcher_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		img, err := mutate.Append(empty.Image, mutate.Addendum{Layer: l})
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Set manifest type.
    		manifest, err := img.Manifest()
    		if err != nil {
    			t.Fatal(err)
    		}
    		manifest.MediaType = types.DockerManifestSchema2
    
    		// Push image to the registry.
    		err = crane.Push(img, ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils_test.go

    			expectErr:      false,
    			expectedDiff: `@@ -14,0 +15 @@
    +  restartPolicy: Always
    `,
    		},
    		{
    			description:    "first manifest doesn't exist",
    			podYamls:       []string{validPod, ""},
    			expectedResult: false,
    			expectErr:      true,
    		},
    		{
    			description:    "second manifest doesn't exist",
    			podYamls:       []string{"", validPod},
    			expectedResult: false,
    			expectErr:      true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for Swift component with dependencies on multiple repositories"() {
            given:
            def lib1Repo = GitFileRepository.init(testDirectory.file("repos/lib1"))
            lib1Repo.file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  7. operator/pkg/object/objects_test.go

    			if err != nil {
    				t.Errorf("error opening test data file: %v", err)
    			}
    			defer inputFile.Close()
    			manifest, err := io.ReadAll(inputFile)
    			if err != nil {
    				t.Errorf("error reading test data file: %v", err)
    			}
    			objects, err := ParseK8sObjectsFromYAMLManifestFailOption(string(manifest), tc.failOnError)
    			if tc.expectErr {
    				assert.Error(t, err)
    			} else {
    				assert.NoError(t, err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

        earlib files('earLib.jar')
    }
    
    """
            when:
            run 'assemble'
    
            then:
            def ear = new JarTestFixture(file('build/libs/root.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
            ear.assertContainsFile("META-INF/application.xml")
            ear.assertContainsFile("rootLib.jar")
            ear.assertContainsFile("lib/earLib.jar")
        }
    
        void "customizes ear archive"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. operator/pkg/manifest/shared.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    // installerScope is the scope for shared manifest package.
    var installerScope = log.RegisterScope("installer", "installer")
    
    // GenManifests generates a manifest map, keyed by the component name, from input file list and a YAML tree
    // representation of path-values passed through the --set flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

                <executions>
                  <execution>
                    <goals>
                      <goal>manifest</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <!-- Needed for including the manifest, see MJAR-71 -->
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
Back to top