Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for Sven (2.66 sec)

  1. src/cmd/go/internal/modload/load.go

    			}
    
    			suggestEFlag = true
    
    			// Even if we press ahead with the '-e' flag, the older version will
    			// error out in readonly mode if it thinks the go.mod file contains
    			// any *explicit* dependency that is not at its selected version,
    			// even if that dependency is not relevant to any package being loaded.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

       * such as {@code removeAll()} and {@code clear()} are called on the filtered set, only elements
       * that satisfy the filter will be removed from the underlying set.
       *
       * <p>The returned set isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered set's methods, such as {@code size()}, iterate across every element in
       * the underlying set and determine which elements satisfy the filter. When a live view is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        if (comparator == null) {
          // If map has a null comparator, the keys should have a natural ordering,
          // even though K doesn't explicitly implement Comparable.
          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    func Enabled() bool {
    	Init()
    	return modRoots != nil || cfg.ModulesEnabled
    }
    
    func VendorDir() string {
    	if inWorkspaceMode() {
    		return filepath.Join(filepath.Dir(WorkFilePath()), "vendor")
    	}
    	// Even if -mod=vendor, we could be operating with no mod root (and thus no
    	// vendor directory). As long as there are no dependencies that is expected
    	// to work. See script/vendor_outside_module.txt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	flag.BoolVar(&t.rebuild, "rebuild", false, "rebuild everything first")
    	flag.BoolVar(&noRebuild, "no-rebuild", false, "overrides -rebuild (historical dreg)")
    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Sets.java

       * that satisfy the filter will be removed from the underlying set.
       *
       * <p>The returned set isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered set's methods, such as {@code size()}, iterate across every element in
       * the underlying set and determine which elements satisfy the filter. When a live view is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    		// as an integer if it is a constant.
    		if !allInteger(typ) {
    			check.errorf(x, InvalidShiftOperand, invalidOp+"shifted operand %s (type %s) must be integer", x, typ)
    			return
    		}
    		// Even if we have an integer, if the value is a constant we
    		// still must check that it is representable as the specific
    		// int type requested (was go.dev/issue/22969). Fall through here.
    	}
    	if old.val != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    // $CC_FOR_TARGET, if set, applies to all goos/goarch except gohostos/gohostarch,
    // but is overridden by the following.
    // If gohostos=goos and gohostarch=goarch, then $CC_FOR_TARGET applies even for gohostos/gohostarch.
    // $CC_FOR_goos_goarch, if set, applies only to goos/goarch.
    func compilerEnv(envName, def string) map[string]string {
    	m := map[string]string{"": def}
    
    	if env := os.Getenv(envName); env != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                                .inputStream(is)
                                .build());
                    } catch (XmlReaderException ne) {
                        // still unreadable even in non-strict mode, rethrow original error
                        throw e;
                    }
    
                    Severity severity = request.isProjectBuild() ? Severity.ERROR : Severity.WARNING;
                    problems.add(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    		return 2
    	}
    	return 1
    }
    
    // mergePoint finds a block among a's blocks which dominates b and is itself
    // dominated by all of a's blocks. Returns nil if it can't find one.
    // Might return nil even if one does exist.
    func mergePoint(b *Block, a ...*Value) *Block {
    	// Walk backward from b looking for one of the a's blocks.
    
    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top