Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,371 for better (0.11 sec)

  1. src/cmd/internal/pgo/pprof.go

    			weight[namedEdge] += e.WeightValue()
    		}
    	}
    
    	if !seenStartLine {
    		// TODO(prattmic): If Function.start_line is missing we could
    		// fall back to using absolute line numbers, which is better
    		// than nothing.
    		return NamedEdgeMap{}, 0, fmt.Errorf("profile missing Function.start_line data (Go version of profiled application too old? Go 1.20+ automatically adds this to profiles)")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

            public AddDTDFilterInputStream(InputStream in) throws IOException {
                super(new BufferedInputStream(in));
    
                this.in.mark(MARK);
    
                // TODO: we should really find a better solution for this...
                // maybe we could use a FilterReader instead of a FilterInputStream?
                int byte1 = this.in.read();
                int byte2 = this.in.read();
                int byte3 = this.in.read();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    However, they can become hard to maintain as the build script grows in size and complexity.
    
    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    They offer better performance and maintainability compared to script plugins, and they can be reused across different projects.
    You can also write them in Groovy DSL but that is not recommended.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/internal/zstd/fuzz_test.go

    // This isn't a great fuzz test because the fuzzer can't efficiently
    // explore the space of decompressor behavior, since it can't see
    // what the compressor is doing. But it's better than nothing.
    func FuzzDecompressor(f *testing.F) {
    	zstd := findZstd(f)
    
    	for _, test := range tests {
    		f.Add([]byte(test.uncompressed))
    	}
    
    	// Add some larger data, as that has more interesting compression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

        pm.addPass(mlir::createCanonicalizerPass());
      }
    }
    
    void AddMhloOptimizationPasses(OpPassManager& pm,
                                   const bool add_fold_broadcast_pass) {
      // Rewrites some patterns for better performance.
      pm.addNestedPass<func::FuncOp>(createUnfuseBatchNormPass());
      pm.addNestedPass<func::FuncOp>(createFuseConvolutionPass());
      pm.addNestedPass<func::FuncOp>(createOptimizePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            long len = cacheFile.length();
    
            checkAddsAndRemoves(Collections.reverseOrder(), values);
    
            // need to make this better
            assertTrue(cacheFile.length() < (long)(1.4 * len));
    
            checkAdds(values);
    
            // need to make this better
            assertTrue(cacheFile.length() < (long) (1.4 * 1.4 * len));
    
            cache.close();
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. hack/verify-api-groups.sh

    			exit 1
    		fi
    	done
    done
    
    # check all groupversions to make sure they're in the init.sh file.  This isn't perfect, but its slightly
    # better than nothing
    for external_group_version in "${external_group_versions[@]}"; do
    	if ! grep -q "${external_group_version}" "${KUBE_ROOT}/hack/lib/init.sh" ; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/crypto/x509/hybrid_pool_test.go

    		// updated. If after we hit the deadline, the pool has _still_ not been
    		// populated with the expected root, it's unlikely we are ever going to
    		// get into a good state, and so we just fail the test. #52108 suggests
    		// a better possible long term solution.
    
    		deadline := time.Now().Add(time.Second * 10)
    		nextSleep := 10 * time.Millisecond
    		for i := 0; ; i++ {
    			c, err := tls.Dial("tcp", "google.com:443", nil)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/runtime/mem_windows.go

    	p := stdcall4(_VirtualAlloc, uintptr(v), n, _MEM_COMMIT, _PAGE_READWRITE)
    	if p == uintptr(v) {
    		return
    	}
    
    	// Commit failed. See SysUnused.
    	// Hold on to n here so we can give back a better error message
    	// for certain cases.
    	k := n
    	for k > 0 {
    		small := k
    		for small >= 4096 && stdcall4(_VirtualAlloc, uintptr(v), small, _MEM_COMMIT, _PAGE_READWRITE) == 0 {
    			small /= 2
    			small &^= 4096 - 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/math/rand/v2/normal.go

    func (r *Rand) NormFloat64() float64 {
    	for {
    		u := r.Uint64()
    		j := int32(u) // Possibly negative
    		i := u >> 32 & 0x7F
    		x := float64(j) * float64(wn[i])
    		if absInt32(j) < kn[i] {
    			// This case should be hit better than 99% of the time.
    			return x
    		}
    
    		if i == 0 {
    			// This extra work is only required for the base strip.
    			for {
    				x = -math.Log(r.Float64()) * (1.0 / rn)
    				y := -math.Log(r.Float64())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top