Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for variants (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         *
         * @return true if a deprecation was emitted
         */
        private boolean maybePreventMutation(MutationType type, String typeDescription) {
            // If an external party has seen the public state (variant metadata) of our configuration,
            // we forbid any mutation that mutates the public state. The resolution strategy does
            // not mutate the public state of the configuration, so we allow it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    			Scheme: "http",
    			Host:   "example.com",
    			Path:   "/a b",
    		},
    		"/a%20b",
    	},
    	// golang.org/issue/4860 variant 1
    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "/%2F/%2F/",
    		},
    		"/%2F/%2F/",
    	},
    	// golang.org/issue/4860 variant 2
    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "//other.example.com/%2F/%2F/",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	got         map[Sym]int32       // stores got for pe objects
    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (locale != null) {
                properties.put("user.language", locale.getLanguage());
                properties.put("user.country", locale.getCountry());
                properties.put("user.variant", locale.getVariant());
            }
    
            if (eagerClassLoaderCreationChecksOn) {
                properties.put(DefaultClassLoaderScope.STRICT_MODE_PROPERTY, "true");
            }
    
            if (interactive) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Pause: add a -v flag to the Windows variant of the pause binary, which prints the version of pause and exits. The Linux pause already has the flag. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // with the following instructions:
    //
    //	00000000: stop
    //	0nnnnnnn: emit n bits copied from the next (n+7)/8 bytes
    //	10000000 n c: repeat the previous n bits c times; n, c are varints
    //	1nnnnnnn c: repeat the previous n bits c times; c is a varint
    
    // runGCProg returns the number of 1-bit entries written to memory.
    func runGCProg(prog, dst *byte) uintptr {
    	dstStart := dst
    
    	// Bits waiting to be written to memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	unlock(&sched.gFree.lock)
    }
    
    // markrootSpans marks roots for one shard of markArenas.
    //
    //go:nowritebarrier
    func markrootSpans(gcw *gcWork, shard int) {
    	// Objects with finalizers have two GC-related invariants:
    	//
    	// 1) Everything reachable from the object must be marked.
    	// This ensures that when we pass the object to its finalizer,
    	// everything the finalizer can reach will be retained.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    Creates a dataset that invokes its 'next' region to generate elements. Conceptually,
    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    MakeIterator / IteratorGetNext. Note that the actual TF implementation differs: It
    generates the next element just in time, during IteratorGetNext.
    
    init_extra_args: Additional arguments to pass to 'init'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    // example.com/foo might be found in module example.com and also in module
    // example.com/foo, and those modules may have independent v0.1.0 tags — so the
    // input 'example.com/foo@v0.1.0' could syntactically refer to the variant of
    // the package loaded from either module! (See mod_get_ambiguous_pkg.txt.)
    // If the argument is ambiguous, the user can often disambiguate by specifying
    // explicit versions for *all* of the potential module paths involved.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top