Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for forced (0.11 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.CleanupTmpDir = in.CleanupTmpDir
    	out.CertificatesDir = in.CertificatesDir
    	out.CRISocket = in.CRISocket
    	out.DryRun = in.DryRun
    	out.Force = in.Force
    	out.IgnorePreflightErrors = *(*[]string)(unsafe.Pointer(&in.IgnorePreflightErrors))
    	out.SkipPhases = *(*[]string)(unsafe.Pointer(&in.SkipPhases))
    	out.UnmountFlags = *(*[]string)(unsafe.Pointer(&in.UnmountFlags))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    		// Force revocation times to UTC per RFC 5280.
    		revokedCerts = make([]pkix.RevokedCertificate, len(template.RevokedCertificates))
    		for i, rc := range template.RevokedCertificates {
    			rc.RevocationTime = rc.RevocationTime.UTC()
    			revokedCerts[i] = rc
    		}
    	} else {
    		// Convert the ReasonCode field to a proper extension, and force revocation
    		// times to UTC per RFC 5280.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	ctxt.Libdir = append(ctxt.Libdir, arg)
    }
    
    /*
     * Unix doesn't like it when we write to a running (or, sometimes,
     * recently run) binary, so remove the output file before writing it.
     * On Windows 7, remove() can force a subsequent create() to fail.
     * S_ISREG() does not exist on Plan 9.
     */
    func mayberemoveoutfile() {
    	if fi, err := os.Lstat(*flagOutfile); err == nil && !fi.Mode().IsRegular() {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def nextResolutionResult = config.incoming.resolutionResult
            def nextResolvedConfiguration = config.resolvedConfiguration
    
            when:
            nextResolutionResult.root // forces lazy resolution
    
            then:
            0 * resolver._
            config.state == RESOLVED
    
            // We get back the same resolution results
            previousResolutionResult == nextResolutionResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            Action<Project> action = new Action<Project>() {
                @Override
                public void execute(Project project) {
                    // Don't force evaluation of rules here, let the task container do what it needs to
                    ((ProjectInternal) project).getOwner().ensureTasksDiscovered();
    
                    foundTargets.put(project, new TreeSet<Task>(project.getTasks()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    		panic("internal error: resolveIfUnambiguous called with empty pathSet")
    	}
    
    	for _, m := range cs.pkgMods {
    		if _, ok := r.noneForPath(m.Path); ok {
    			// A query with version "none" forces the candidate module to version
    			// "none", so we cannot use any other version for that module.
    			continue
    		}
    
    		if modload.MainModules.Contains(m.Path) {
    			if m.Version == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    You can always use the `--rerun` <<command_line_interface.adoc#sec:builtin_task_options,built-in task option>> to force a task to rerun.
    
        gradle test --rerun
    
    Alternatively, if <<build_cache.adoc#sec:build_cache_enable,build caching>> is not enabled, you can also force tests to run by cleaning the output of the relevant `Test` task — say `test` — and running the tests again, like so:
    
        gradle cleanTest test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

          return filter(unfiltered().tailSet(fromElement, inclusive), predicate);
        }
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * sets in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the sets. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top