Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for Modular (0.41 sec)

  1. docs/de/docs/project-generation.md

        * Mehrstufigen Docker-Erstellung, sodass Sie kompilierten Code nicht speichern oder committen müssen.
        * Frontend-Tests, welche zur Erstellungszeit ausgeführt werden (können auch deaktiviert werden).
        * So modular wie möglich gestaltet, sodass es sofort einsatzbereit ist. Sie können es aber mit Vue CLI neu generieren oder es so wie Sie möchten erstellen und wiederverwenden, was Sie möchten.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestEnvironmentIntegrationTest.groovy

                assertStderr(Matchers.containsText("INFO via slf4j"))
            }
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "can run tests referencing slf4j with modular java"() {
            Assume.assumeTrue(frameworkSupportsModularJava)
    
            given:
            file('src/test/java/org/gradle/example/TestUsingSlf4j.java') << """
                package org.gradle.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. docs/pt/docs/project-generation.md

        * Construção multi-estágio Docker, então você não precisa salvar ou _commitar_ código compilado.
        * Testes _frontend_ rodados na hora da construção (pode ser desabilitado também).
        * Feito tão modular quanto possível, então ele funciona fora da caixa, mas você pode gerar novamente com Vue CLI ou criar conforme você queira, e reutilizar o que quiser.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

          // connected to all quantizable ops.
          return true;
        }
        return false;
      }
    };
    
    // TODO: b/264218457 - Refactors the current file to parse preset quantization
    // options and allow modular control of quantization specs.
    void QuantizeWeightPass::runOnOperation() {
      func::FuncOp func = getOperation();
      MLIRContext* ctx = func.getContext();
      RewritePatternSet patterns(ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    // [p0, p1, p2] is 2¹³⁰ - 5 in little endian order.
    const (
    	p0 = 0xFFFFFFFFFFFFFFFB
    	p1 = 0xFFFFFFFFFFFFFFFF
    	p2 = 0x0000000000000003
    )
    
    // finalize completes the modular reduction of h and computes
    //
    //	out = h + s  mod  2¹²⁸
    func finalize(out *[TagSize]byte, h *[3]uint64, s *[2]uint64) {
    	h0, h1, h2 := h[0], h[1], h[2]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/hash/maphash/maphash.go

    // last call to [Hash.Reset] or [Hash.SetSeed].
    //
    // All bits of the Sum64 result are close to uniformly and
    // independently distributed, so it can be safely reduced
    // by using bit masking, shifting, or modular arithmetic.
    func (h *Hash) Sum64() uint64 {
    	h.initSeed()
    	return rthash(h.buf[:h.n], h.state.s)
    }
    
    // MakeSeed returns a new random seed.
    func MakeSeed() Seed {
    	var s uint64
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

         * @since 4.5
         */
        public void setExecutableDir(String executableDir) {
            this.executableDir = executableDir;
        }
    
        /**
         * The main module name used to start the modular Java application.
         *
         * @since 6.4
         */
        @Optional
        @Input
        public Property<String> getMainModule() {
            return mainModule;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    	yLimbs := y.limbs[:size]
    
    	for i := 0; i < size; i++ {
    		xLimbs[i], c = bits.Sub(xLimbs[i], yLimbs[i], c)
    	}
    	return
    }
    
    // Modulus is used for modular arithmetic, precomputing relevant constants.
    //
    // Moduli are assumed to be odd numbers. Moduli can also leak the exact
    // number of bits needed to store their value, and are stored without padding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ====
    
    === Using libraries that are not modules
    
    You probably want to use external libraries, like OSS libraries from Maven Central, in your modular Java project.
    Some libraries, in their newer versions, are already full modules with a module descriptor.
    For example, `com.google.code.gson:gson:2.8.9` that has the module name `com.google.gson`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //
    // The protocol required by 'go vet -vettool=...' is that the tool must support:
    //
    //	-flags          describe flags in JSON
    //	-V=full         describe executable for build caching
    //	foo.cfg         perform separate modular analyze on the single
    //	                unit described by a JSON config file foo.cfg.
    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    	log.SetPrefix(progname + ": ")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top