Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for mainTest (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            if (!cpJar.isFile()) {
                // Make sure the parent exists or the jar creation might fail
                cpJar.getParentFile().mkdirs();
                Manifest manifest = new Manifest();
                manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests.go

    					}
    				}
    			}
    		}
    
    		// if patchesDir is defined, patch the static Pod manifest
    		if patchesDir != "" {
    			patchedSpec, err := staticpodutil.PatchStaticPod(&spec, patchesDir, os.Stdout)
    			if err != nil {
    				return errors.Wrapf(err, "failed to patch static Pod manifest file for %q", componentName)
    			}
    			spec = *patchedSpec
    		}
    
    		// writes the StaticPodSpec to disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

            writeActivity(library, libPackage, libraryActivity)
            file("${library}/src/main/AndroidManifest.xml") << """<?xml version="1.0" encoding="utf-8"?>
                <manifest xmlns:android="http://schemas.android.com/apk/res/android">
                </manifest>""".stripIndent()
    
            writeActivity(app, appPackage, appActivity)
            file("${app}/src/main/java/UsesLibraryActivity.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    func TestCleanupDirs(t *testing.T) {
    	tests := []struct {
    		name                   string
    		keepManifest, keepEtcd bool
    	}{
    		{
    			name:         "save manifest backup",
    			keepManifest: true,
    		},
    		{
    			name:         "save both etcd and manifest",
    			keepManifest: true,
    			keepEtcd:     true,
    		},
    		{
    			name: "save nothing",
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. build/dependencies.yaml

        version: 23.4
        refPaths:
        - path: hack/lib/protoc.sh
          match: PROTOC_VERSION=
    
      # etcd
      - name: "etcd"
        version: 3.5.14
        refPaths:
        - path: cluster/gce/manifests/etcd.manifest
          match: etcd_docker_tag|etcd_version
        - path: cluster/gce/upgrade-aliases.sh
          match: ETCD_IMAGE|ETCD_VERSION
        - path: cmd/kubeadm/app/constants/constants.go
          match: DefaultEtcdVersion =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    # Assumed vars (which are calculated in function compute-master-manifest-variables)
    #   CLOUD_CONFIG_OPT
    #   CLOUD_CONFIG_VOLUME
    #   CLOUD_CONFIG_MOUNT
    #   DOCKER_REGISTRY
    #   INSECURE_PORT_MAPPING
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. guava-gwt/pom.xml

                  <includeArtifactIds>failureaccess</includeArtifactIds>
                  <classifier>sources</classifier>
                  <excludeTransitive>true</excludeTransitive>
                  <excludes>META-INF/MANIFEST.MF</excludes>
                  <outputDirectory>${project.build.directory}/failureaccess-sources</outputDirectory>
                  <type>java-source</type>
                  <silent>false</silent>
                </configuration>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Such unstable inputs can be supplied directly to the task. Consider a version number that includes a timestamp being added to the jar file's manifest:
    
    ====
    include::sample[dir="snippets/buildCache/timestamp-in-manifest/kotlin",files="build.gradle.kts[tags=timestamp]"]
    include::sample[dir="snippets/buildCache/timestamp-in-manifest/groovy",files="build.gradle[tags=timestamp]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // based on which Gradle module Jars are part of the distribution.
    val runtimeApiJarName = "gradle-runtime-api-info"
    
    // Ignore the build receipt as it is not relevant for API list and manifest generation
    normalization {
        runtimeClasspath {
            ignore("org/gradle/build-receipt.properties")
        }
    }
    
    // Configurations to define dependencies
    val coreRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. tests/integration/operator/switch_cr_test.go

    	if _, err := kube2.CheckPodsAreReady(kube2.NewSinglePodFetch(cs, IstioNamespace, "app=istiod")); err != nil {
    		t.Fatalf("istiod pod is not ready: %v", err)
    	}
    
    	// get manifests by running `manifest generate`
    	generateCmd := []string{
    		"manifest", "generate",
    		"--manifests", ManifestPath,
    	}
    	if profileName != "" {
    		generateCmd = append(generateCmd, "--set", fmt.Sprintf("profile=%s", profileName))
    	}
    	if revision != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top