Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 492 for prepending (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		}
    		return nil
    	}
    	return res, testCancel, nil
    }
    
    // UpdateAndWait updates the given object in the test, or creates it if it doesn't exist
    // Depending upon object type, waits afterward until the object is synced
    // by the policy source
    //
    // Be aware the UpdateAndWait will modify the ResourceVersion of the
    // provided objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        api(libs.testng)
        api(libs.bsh) {
            because("""We need to create a capability conflict between "org.beanshell:bsh", and "org.beanshell:beanshell" by explicitly including this lib
                version of bsh, instead of depending on the transitive version contributed by testng.  This lib contributes the "beanshell" capability,
                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Supplier.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface Supplier<T extends @Nullable Object> {
      /**
       * Retrieves an instance of the appropriate type. The returned object may or may not be a new
       * instance, depending on the implementation.
       *
       * @return an instance of the appropriate type
       */
      @ParametricNullness
      T get();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 12:15:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		if !data.DryRun() {
    			fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    			fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    			fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                    sourcePath = "${productFlavorName}/${buildTypeName}"
                }
                val testTaskName = "test${sourceName.capitalize()}UnitTest"
                // Create coverage task of form("testFlavorTypeCoverage" depending on("testFlavorTypeUnitTest"
                tasks.register<JacocoReport>("${testTaskName}Coverage") {
                    dependsOn(testTaskName)
                    group = "Reporting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    === Verification of downloaded Gradle distributions
    
    The Gradle Wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison.
    This increases security against targeted attacks by preventing a man-in-the-middle attacker from tampering with the downloaded Gradle distribution.
    
    To enable this feature, download the `.sha256` file associated with the Gradle distribution you want to verify.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/version.go

    func asGoVersion(v string) goVersion {
    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    // cmp returns -1, 0, or +1 depending on whether x < y, x == y, or x > y,
    // interpreted as Go versions.
    func (x goVersion) cmp(y goVersion) int {
    	return version.Compare(string(x), string(y))
    }
    
    var (
    	// Go versions that introduced language changes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_address.go

    	}
    )
    
    // TODO: getActualWildcardAndLocalHost would be removed once the dual stack support in Istio
    // getActualWildcardAndLocalHost will return corresponding Wildcard and LocalHost
    // depending on value of proxy's IPAddresses.
    func getActualWildcardAndLocalHost(node *model.Proxy) (string, string) {
    	if node.SupportsIPv4() {
    		return WildcardAddress, LocalhostAddress
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

     - only the version you are interested in is used as a reference
     - only the test you are interested in is executed
     - tighten the regression limits to get significant results
     - only search for memory/execution time regressions depending on what you are interested in
     
    For our example, let's assume we want to track down a performance regression for `native build medium header file change`. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    					PodIP: "1.2.3.4",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top