Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for Hashing (0.25 sec)

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

    You should use `JavaPluginExtension` instead.
    
    ==== Remove implicit `--add-opens` for Gradle workers
    Before Gradle 8.0, Gradle workers on JDK9+ automatically opened JDK modules `java.base/java.util` and `java.base/java.lang` by passing `--add-opens` CLI arguments.
    This enabled code executed in a Gradle worker to perform deep reflection on JDK internals without warning or failing.
    Workers no longer use these implicit arguments.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    					}
    				}
    			}
    		}
    	}
    
    	// Now validate all the listeners. Collate the tcp listeners first and then the HTTP listeners
    	// TODO: This is going to be bad for caching as the order of listeners in tcpListeners or httpListeners is not
    	// guaranteed.
    	return finalizeOutboundListeners(lb, listenerMap)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      std::unique_ptr<Predicate> Make(Args&&... args) {
        // If we ever expose the Predicate class outside this .cc file then we may
        // want to make this hard to misuse (by accidentally passing in an arbitrary
        // integer to the Predicate constructor for instance).
        return std::unique_ptr<PredicateT>(
            new PredicateT(id_counter_++, std::forward<Args>(args)...));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringExtras.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSet.h"
    #include "llvm/Analysis/AssumeBundleQueries.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'li.jstree-closed > ul { display:none; } ';
    		// Correct IE 6 (does not support the > CSS selector)
    		if(/msie/.test(u) && parseInt(v, 10) == 6) {
    			is_ie6 = true;
    
    			// fix image flicker and lack of caching
    			try {
    				document.execCommand("BackgroundImageCache", false, true);
    			} catch (err) { }
    
    			css_string += '' +
    				'.jstree li { height:18px; margin-left:0; margin-right:0; } ' +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            failure.assertHasCause("Gradle does not allow passing null for the configuration action for CopySpec.${method}().")
    
            where:
            method << ["from", "into"]
        }
    
        @ToBeFixedForConfigurationCache(
            because = "eachFile, expand, filter and rename",
            skip = ToBeFixedForConfigurationCache.Skip.FLAKY
        )
        def "task output caching is disabled when #description is used"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

     * void exampleBadCaller() {
     *   double d = sqrt(-1.0);
     * }
     * }</pre>
     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
     * <p>Avoid passing message arguments that are expensive to compute; your code will always compute
     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/Debug.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Affine/Analysis/LoopAnalysis.h"  // from @llvm-project
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		copyfile(pathf("%s/compile3", tooldir), pathf("%s/compile", tooldir), writeExec)
    	}
    
    	// Now that toolchain3 has been built from scratch, its compiler and linker
    	// should have accurate build IDs suitable for caching.
    	// Now prime the build cache with the rest of the standard library for
    	// testing, and so that the user can run 'go install std cmd' to quickly
    	// iterate on local changes without waiting for a full rebuild.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top