Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for CL (0.1 sec)

  1. .bazelrc

    build:avx_win --copt=/arch:AVX
    
    # Use Clang-cl compiler on Windows
    build:win_clang --copt=/clang:-Weverything
    build:win_clang --extra_toolchains=@local_config_cc//:cc-toolchain-x64_windows-clang-cl
    build:win_clang --extra_execution_platforms=//tensorflow/tools/toolchains/win:x64_windows-clang-cl
    build:win_clang --host_platform=//tensorflow/tools/toolchains/win:x64_windows-clang-cl
    build:win_clang --compiler=clang-cl
    build:win_clang --linkopt=/FORCE:MULTIPLE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
          llvm::cl::values(
              clEnumValN(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		sc:        clienttest.NewDirectClient[*corev1.Service, corev1.Service, *corev1.ServiceList](t, cl),
    		ns:        clienttest.NewWriter[*corev1.Namespace](t, cl),
    		grc:       clienttest.NewWriter[*k8sbeta.Gateway](t, cl),
    		gwcls:     clienttest.NewWriter[*k8sbeta.GatewayClass](t, cl),
    		se:        clienttest.NewWriter[*apiv1alpha3.ServiceEntry](t, cl),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    // add adds pc to the head of the linked list.
    func (cl *connLRU) add(pc *persistConn) {
    	if cl.ll == nil {
    		cl.ll = list.New()
    		cl.m = make(map[*persistConn]*list.Element)
    	}
    	ele := cl.ll.PushFront(pc)
    	if _, ok := cl.m[pc]; ok {
    		panic("persistConn was already in LRU")
    	}
    	cl.m[pc] = ele
    }
    
    func (cl *connLRU) removeOldest() *persistConn {
    	ele := cl.ll.Back()
    	pc := ele.Value.(*persistConn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (cl.hasOption(CLIManager.ALSO_MAKE) && !cl.hasOption(CLIManager.ALSO_MAKE_DEPENDENTS)) {
                return MavenExecutionRequest.REACTOR_MAKE_UPSTREAM;
            } else if (!cl.hasOption(CLIManager.ALSO_MAKE) && cl.hasOption(CLIManager.ALSO_MAKE_DEPENDENTS)) {
                return MavenExecutionRequest.REACTOR_MAKE_DOWNSTREAM;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            if (!writable && property.getSchema() instanceof CompositeSchema) {
                // Adds a void $propName(Closure<?> cl) method that delegates to model state
    
                MethodVisitor methodVisitor = declareMethod(visitor, property.getName(), Type.getMethodDescriptor(Type.VOID_TYPE, CLOSURE_TYPE), null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    		log.Lock()
    		slurp, _ := io.ReadAll(r.Body)
    		fmt.Fprintf(&log.Buffer, "%s %s %q", r.Method, r.RequestURI, slurp)
    		if cl := r.Header.Get("Content-Length"); r.Method == "GET" && len(slurp) == 0 && (r.ContentLength != 0 || cl != "") {
    			fmt.Fprintf(&log.Buffer, " (but with body=%T, content-length = %v, %q)", r.Body, r.ContentLength, cl)
    		}
    		log.WriteByte('\n')
    		log.Unlock()
    		urlQuery := r.URL.Query()
    		if v := urlQuery.Get("code"); v != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	             ::= <(trinary) operator-name> <expression> <expression> <expression>
    //	             ::= pp_ <expression>
    //	             ::= mm_ <expression>
    //	             ::= cl <expression>+ E
    //	             ::= cl <expression>+ E
    //	             ::= cv <type> <expression>
    //	             ::= cv <type> _ <expression>* E
    //	             ::= tl <type> <braced-expression>* E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                .allowAll()
            withColorVariants(mavenHttpRepo.module("hamcrest", "hamcrest-core", "1.3")).publish().allowAll()
        }
    
        void setupBuildWithNoSteps(@DelegatesTo(Builder) Closure cl = {}) {
            setupBuildWithColorAttributes(buildFile, cl)
            setupTransformerTypes()
            buildFile << """
    
    allprojects {
        repositories {
            maven {
                url = '${mavenHttpRepo.uri}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (C(R|GR)J  {c} x (MOVDconst [y]) yes no) && is8Bit(y)  => (C(I|GI)J  {c} x [ int8(y)] yes no)
    (CL(R|GR)J {c} x (MOVDconst [y]) yes no) && isU8Bit(y) => (CL(I|GI)J {c} x [uint8(y)] yes no)
    (C(R|GR)J  {c} (MOVDconst [x]) y yes no) && is8Bit(x)  => (C(I|GI)J  {c.ReverseComparison()} y [ int8(x)] yes no)
    (CL(R|GR)J {c} (MOVDconst [x]) y yes no) && isU8Bit(x) => (CL(I|GI)J {c.ReverseComparison()} y [uint8(x)] yes no)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top