Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for Avery (0.12 sec)

  1. src/cmd/go/internal/modget/get.go

    }
    
    // isNoSuchPackageVersion reports whether err indicates that the requested
    // package does not exist at the requested version, either because no module
    // that could contain it exists at that version, or because every such module
    // that does exist does not actually contain the package.
    func isNoSuchPackageVersion(err error) bool {
    	var noPackage *modload.PackageNotInModuleError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    )
    
    // heapObjectsCanMove always returns false in the current garbage collector.
    // It exists for go4.org/unsafe/assume-no-moving-gc, which is an
    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/testing/testing.go

    	}
    }
    
    // after runs after all testing.
    func (m *M) after() {
    	m.afterOnce.Do(func() {
    		m.writeProfiles()
    	})
    
    	// Restore PanicOnExit0 after every run, because we set it to true before
    	// every run. Otherwise, if m.Run is called multiple times the behavior of
    	// os.Exit(0) will not be restored after the second run.
    	if *panicOnExit0 {
    		m.deps.SetPanicOnExit0(false)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	myCRDV1Beta1: "MyCoolCRD",
    }
    
    // FixTabsOrDie counts the number of tab characters preceding the first
    // line in the given yaml object. It removes that many tabs from every
    // line. It panics (it's a test function) if some line has fewer tabs
    // than the first line.
    //
    // The purpose of this is to make it easier to read tests.
    func FixTabsOrDie(in string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    				hashWriteStat(h, finfo)
    			}
    		}
    	} else if info.Mode().IsRegular() {
    		// Because files might be very large, do not attempt
    		// to hash the entirety of their content. Instead assume
    		// the mtime and size recorded in hashWriteStat above
    		// are good enough.
    		//
    		// To avoid problems for very recent files where a new
    		// write might not change the mtime due to file system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// An object that describes the pod that will be created.
    	// The DaemonSet will create exactly one copy of this pod on every node
    	// that matches the template's node selector (or on every node if no node
    	// selector is specified).
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	// mark phase.
    	gp.param = nil
    
    	if atomic.Load(&gcBlackenEnabled) == 0 {
    		// The gcBlackenEnabled check in malloc races with the
    		// store that clears it but an atomic check in every malloc
    		// would be a performance hit.
    		// Instead we recheck it here on the non-preemptible system
    		// stack to determine if we should perform an assist.
    
    		// GC is done, so ignore any remaining debt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	// dwarf information (which is rather generic), and some more architecture
    	// specific work like setting up the elf headers/dynamic relocations, etc.
    	// The phases are called "Asmb" and "Asmb2". Asmb2 needs to be defined for
    	// every architecture, but only if architecture has an Asmb function will
    	// it be used for assembly.  Otherwise a generic assembly Asmb function is
    	// used.
    	Asmb  func(*Link, *loader.Loader)
    	Asmb2 func(*Link, *loader.Loader)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    				pkg:       "runtime/internal/wasitest",
    				timeout:   1 * time.Minute,
    				runOnHost: true,
    			})
    	}
    
    	// Only run the API check on fast development platforms.
    	// Every platform checks the API on every GOOS/GOARCH/CGO_ENABLED combination anyway,
    	// so we really only need to run this check once anywhere to get adequate coverage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If you need to invalidate the cache, simply delete that directory:
    
    ----
    ❯ rm -rf .gradle/configuration-cache
    ----
    
    Configuration cache entries are checked periodically (at most every 24 hours) for whether they are still in use.
    They are deleted if they haven't been used for 7 days.
    
    [[config_cache:stable]]
    == Stable configuration cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top