Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 461 for Requires (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sec:local-keyring]]
    === Exporting keys for faster verification
    
    Gradle automatically downloads the required keys but this operation can be quite slow and requires everyone to download the keys.
    To avoid this, Gradle offers the ability to use a local keyring file containing the required public keys.
    Note that only public key packets and a single userId per key are stored and used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    		return err
    	}
    	out.CertSANs = *(*[]string)(unsafe.Pointer(&in.CertSANs))
    	// WARNING: in.TimeoutForControlPlane requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    func autoConvert_v1beta4_Arg_To_kubeadm_Arg(in *Arg, out *kubeadm.Arg, s conversion.Scope) error {
    	out.Name = in.Name
    	out.Value = in.Value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. .bazelrc

    # CUDA WHEEL
    test:linux_cuda_wheel_test_filters --test_tag_filters=gpu,requires-gpu,-no_gpu,-no_oss,-oss_excluded,-oss_serial,-benchmark-test,-no_cuda11,-no_oss_py38,-no_oss_py39,-no_oss_py310
    test:linux_cuda_wheel_test_filters --build_tag_filters=gpu,requires-gpu,-no_gpu,-no_oss,-oss_excluded,-oss_serial,-benchmark-test,-no_cuda11,-no_oss_py38,-no_oss_py39,-no_oss_py310
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

    import org.gradle.internal.file.Stat
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.util.Path
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    import javax.annotation.Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "type": "object",
          "required": ["namespace", "name"],
          "properties": {
            "name": {
              "description": "name is the name of the service. Required",
              "type": "string",
              "default": ""
            },
            "namespace": {
              "description": "namespace is the namespace of the service. Required",
              "type": "string",
              "default": ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.hamcrest.CoreMatchers
    import spock.lang.Issue
    
    import javax.annotation.Nonnull
    import java.util.regex.Pattern
    
    @Requires(IntegTestPreconditions.NotParallelExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    	// WARNING: in.AssuredConcurrencyShares requires manual conversion: does not exist in peer-type
    	if err := Convert_v1beta1_LimitResponse_To_flowcontrol_LimitResponse(&in.LimitResponse, &out.LimitResponse, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    	// WARNING: in.AssuredConcurrencyShares requires manual conversion: does not exist in peer-type
    	if err := Convert_v1beta2_LimitResponse_To_flowcontrol_LimitResponse(&in.LimitResponse, &out.LimitResponse, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    		//
    		// In race mode we have no choice but to just use the same hints because
    		// the race detector requires that the heap be mapped contiguously.
    		for i := 0x7f; i >= 0; i-- {
    			var p uintptr
    			switch {
    			case raceenabled:
    				// The TSAN runtime requires the heap
    				// to be in the range [0x00c000000000,
    				// 0x00e000000000).
    				p = uintptr(i)<<32 | uintptrMask&(0x00c0<<32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    }
    
    // isGitRepo reports whether the working directory is inside a Git repository.
    func isGitRepo() bool {
    	// NB: simply checking the exit code of `git rev-parse --git-dir` would
    	// suffice here, but that requires deviating from the infrastructure
    	// provided by `run`.
    	gitDir := chomp(run(goroot, 0, "git", "rev-parse", "--git-dir"))
    	if !filepath.IsAbs(gitDir) {
    		gitDir = filepath.Join(goroot, gitDir)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top