Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 148 for Scans (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    The _build comparison_ plugin has been deprecated and will be removed in the next major version of Gradle.
    
    link:https://gradle.com/build-scans[Build scans] show much deeper insights into your build and you can use link:https://gradle.com/develocity[Develocity] to directly compare two build's build-scans.
    
    === Potential breaking changes
    
    ==== User supplied Eclipse project names may be ignored on conflict
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  2. src/internal/gover/gover.go

    		return Version{}
    	}
    	v.Kind, x = x[:i], x[i:]
    	if x == "" {
    		return v
    	}
    	v.Pre, x, ok = cutInt(x)
    	if !ok || x != "" {
    		return Version{}
    	}
    
    	return v
    }
    
    // cutInt scans the leading decimal number at the start of x to an integer
    // and returns that value and the rest of the string.
    func cutInt(x string) (n, rest string, ok bool) {
    	i := 0
    	for i < len(x) && '0' <= x[i] && x[i] <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Consult the <<build_cache#build_cache,Build cache chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/runtime/race/testdata/atomic_test.go

    		} else {
    			panic("no panic")
    		}
    	}()
    	atomic.AddInt32(nilptr, 1)
    }
    
    func TestNoRaceDeferAtomicStore(t *testing.T) {
    	// Test that when an atomic function is deferred directly, the
    	// GC scans it correctly. See issue 42599.
    	type foo struct {
    		bar int64
    	}
    
    	var doFork func(f *foo, depth int)
    	doFork = func(f *foo, depth int) {
    		atomic.StoreInt64(&f.bar, 1)
    		defer atomic.StoreInt64(&f.bar, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 17:26:46 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    				"gcscandone", gp.gcscandone)
    			throw("scan missed a g")
    		}
    
    		i++
    	})
    }
    
    // ptrmask for an allocation containing a single pointer.
    var oneptrmask = [...]uint8{1}
    
    // markroot scans the i'th root.
    //
    // Preemption must be disabled (because this uses a gcWork).
    //
    // Returns the amount of GC work credit produced by the operation.
    // If flushBgCredit is true, then that credit is also flushed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/ClassPath.java

        public final File file() {
          return home;
        }
    
        /** Scans this location and returns all scanned resources. */
        public ImmutableSet<ResourceInfo> scanResources() throws IOException {
          return scanResources(new HashSet<File>());
        }
    
        /**
         * Scans this location and returns all scanned resources.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/ClassPath.java

        public final File file() {
          return home;
        }
    
        /** Scans this location and returns all scanned resources. */
        public ImmutableSet<ResourceInfo> scanResources() throws IOException {
          return scanResources(new HashSet<File>());
        }
    
        /**
         * Scans this location and returns all scanned resources.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    Develocity may help you with fulfilling these requirements while still using the build cache for all your builds.
    It allows you to easily find out which build produced an artifact coming from the build cache via build scans.
    
    [.screenshot]
    image::build-cache/from-cache-origin.png[]
    
    == Accelerate developer builds by reusing CI results
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			format = p
    		}
    	}
    
    	return &printfWrapper{
    		obj:    fn,
    		fdecl:  fdecl,
    		format: format,
    		args:   args,
    	}
    }
    
    // findPrintfLike scans the entire package to find printf-like functions.
    func findPrintfLike(pass *analysis.Pass, res *Result) (interface{}, error) {
    	// Gather potential wrappers and call graph between them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    }
    
    // minMax records the minimum and maximum value seen while scanning a set of numbers
    type minMax struct {
    	min float64
    	max float64
    }
    
    // note scans one more number
    func (mm *minMax) note(x float64) {
    	mm.min = math.Min(mm.min, x)
    	mm.max = math.Max(mm.max, x)
    }
    
    const MinTarget = 0.001
    const epsilon = 0.0000001
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top