Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for told (0.05 sec)

  1. src/runtime/malloc.go

    			if !hint.down {
    				p += n
    			}
    			hint.addr = p
    			size = n
    			break
    		}
    		// Failed. Discard this hint and try the next.
    		//
    		// TODO: This would be cleaner if sysReserve could be
    		// told to only return the requested address. In
    		// particular, this is already how Windows behaves, so
    		// it would simplify things there.
    		if v != nil {
    			sysFreeOS(v, n)
    		}
    		*hintList = hint.next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	padding: 0.625em 0.75em;
    }
    
    .vcard li {
    	margin: 0;
    	display: block;
    }
    
    .vcard .fn {
    	font-weight: bold;
    	font-size: 0.9375em;
    }
    
    .vevent .summary {
    	font-weight: bold;
    }
    
    .vevent abbr {
    	cursor: auto;
    	text-decoration: none;
    	font-weight: bold;
    	border: none;
    	padding: 0 0.0625em;
    }
    
    @media only screen and (min-width: 768px) {
    
    	h1,
    	h2,
    	h3,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AtomicExchange(32|64) ...) => (LoweredAtomicExchange(32|64) ...)
    
    (AtomicAdd(32|64) ...) => (LoweredAtomicAdd(32|64) ...)
    
    (AtomicCompareAndSwap(32|64) ptr old new_ mem) => (LoweredAtomicCas(32|64) [1] ptr old new_ mem)
    (AtomicCompareAndSwapRel32   ptr old new_ mem) => (LoweredAtomicCas32 [0] ptr old new_ mem)
    
    (AtomicAnd(8|32)  ...) => (LoweredAtomicAnd(8|32)  ...)
    (AtomicOr(8|32)   ...) => (LoweredAtomicOr(8|32)   ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                if (!containsCoordinates(e.getMessage(), groupId, artifactId, version)) {
                    buffer.append(' ').append(ModelProblemUtils.toId(groupId, artifactId, version));
                }
                if (childModel != problems.getRootModel()) {
                    buffer.append(" for ").append(ModelProblemUtils.toId(childModel));
                }
                buffer.append(": ").append(e.getMessage());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			// -znocopyreloc if it thinks a COPY relocation is
    			// required. Switch to gold.
    			// https://sourceware.org/bugzilla/show_bug.cgi?id=19962
    			// https://go.dev/issue/22040
    			altLinker = "gold"
    
    			// If gold is not installed, gcc will silently switch
    			// back to ld.bfd. So we parse the version information
    			// and provide a useful error if gold is missing.
    			name, args := flagExtld[0], flagExtld[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/runtime/map.go

    	it.offset = uint8(r >> h.B & (abi.MapBucketCount - 1))
    
    	// iterator state
    	it.bucket = it.startBucket
    
    	// Remember we have an iterator.
    	// Can run concurrently with another mapiterinit().
    	if old := h.flags; old&(iterator|oldIterator) != iterator|oldIterator {
    		atomic.Or8(&h.flags, iterator|oldIterator)
    	}
    
    	mapiternext(it)
    }
    
    // mapiternext should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * use soft, weak, or phantom references.
       *
       * @param map place to store the mapping from each key to its corresponding values
       * @param factory supplier of new, empty collections that will each hold all values for a given
       *     key
       * @throws IllegalArgumentException if {@code map} is not empty
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> Multimap<K, V> newMultimap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. src/os/os_test.go

    		t.Fatal(err)
    	}
    	mkdirTree(t, root, 1, 6)
    	hold := make(chan struct{})
    	var wg sync.WaitGroup
    	for i := 0; i < 4; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			<-hold
    			err := RemoveAll(root)
    			if err != nil {
    				t.Errorf("unexpected error: %T, %q", err, err)
    			}
    		}()
    	}
    	close(hold) // let workers race to remove root
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

        HashSet<E> set = newHashSet();
        Iterators.addAll(set, elements);
        return set;
      }
    
      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (replaceWithValue $params),
      [(CanOptimizeIdentityGatherNdOrScatterNdOp $params, $indices, $output)]>;
    
    def ShapeMatchesReduceWithKeepAxes : Constraint<CPred<
      "ShapeMatchesReduceWithKeepAxes($0, $1, $2)">>;
    
    // Fold reshapes re-inserting reduced dimensions into the results of a reduction
    // with `keep_dims=false` by changing it to one using `keep_dims=true`.
    foreach ReduceOp = [TFL_MeanOp, TFL_ReduceMaxOp, TFL_ReduceMinOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top