Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for avoiding (0.14 sec)

  1. src/cmd/go/internal/modfetch/cache.go

    		return nil, fmt.Errorf("failed to create cache directory: %w", err)
    	}
    
    	return lockedfile.MutexAt(path).Lock()
    }
    
    // A cachingRepo is a cache around an underlying Repo,
    // avoiding redundant calls to ModulePath, Versions, Stat, Latest, and GoMod (but not CheckReuse or Zip).
    // It is also safe for simultaneous use by multiple goroutines
    // (so that it can be returned from Lookup multiple times).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if {@code input} fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    // is smaller. Above maxCapacity decisions about allocation are left
    // to the Go runtime on append. This allows a caller to make an
    // educated guess about the potential size of the total list while
    // still avoiding overly aggressive initial allocation. If sizes
    // is empty maxCapacity will be used as the size to grow.
    func growSlice(v reflect.Value, maxCapacity int, sizes ...int) {
    	cap := v.Cap()
    	max := cap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/obj7.go

    				if p.From.Sym.NoFrame() {
    					break
    				}
    			}
    
    			if p.Mark&LEAF != 0 && c.autosize < abi.StackSmall {
    				// A leaf function with a small stack can be marked
    				// NOSPLIT, avoiding a stack check.
    				p.From.Sym.Set(obj.AttrNoSplit, true)
    			}
    
    			if !p.From.Sym.NoSplit() {
    				p = c.stacksplit(p, c.autosize) // emit split check
    			}
    
    			var prologueEnd *obj.Prog
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais.go

    		}
    		b--
    		sa[b] = int32(k)
    	}
    }
    
    // length_8_32 computes and records the length of each LMS-substring in text.
    // The length of the LMS-substring at index j is stored at sa[j/2],
    // avoiding the LMS-substring indexes already stored in the top half of sa.
    // (If index j is an LMS-substring start, then index j-1 is type L and cannot be.)
    // There are two exceptions, made for optimizations in name_8_32 below.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    2. They facilitate incremental building. +
    For example, suppose Gradle recognizes that the inputs and outputs of a task remain unchanged. In that case, it can leverage results from previous build runs or the build cache, avoiding rerunning the task action altogether.
    
    When you apply a plugin like the `java-library` plugin, Gradle will automatically register some tasks and configure them with defaults.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

      all surrounding logic into a custom plugin located in <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,`buildSrc`>>.
      Apply the custom plugin to only the relevant subprojects, reducing configuration delay and avoiding code duplication.
    
    === Statically compile tasks and plugins
    
    Plugin and task authors often write Groovy for its concise syntax, API extensions to the JDK, and functional methods using closures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    Just avoiding the copy of files doesn't necessarily improve things too much, but because it used the cache for that step, it can **use the cache for the next step**. For example, it could use the cache for the instruction that installs dependencies with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying this step or, if {@code get()} throws a different kind of exception, that
       *     exception itself. To avoid hiding bugs and other unrecoverable errors, callers should
       *     prefer more specific types, avoiding {@code Throwable.class} in particular.
       * @param fallback the function to be called if this step fails with the expected exception type.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		finishedJobs        []*batchv1.Job
    		jobCreateError      error
    		expectedDeletedJobs []string
    	}{
    		{
    			name: "jobs are still deleted when a cronjob can't create jobs due to jobs quota being reached (avoiding a deadlock)",
    			now:  *justAfterTheHour(),
    			cronJob: &batchv1.CronJob{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "foo-ns", Name: "fooer"},
    				Spec: batchv1.CronJobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top