Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 141 for warning (1.55 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                if (results.stream()
                        .flatMap(r -> r.getProblems().stream())
                        .anyMatch(p -> p.getSeverity() != org.apache.maven.model.building.ModelProblem.Severity.WARNING)) {
                    org.apache.maven.model.building.ModelProblem cycle = results.stream()
                            .flatMap(r -> r.getProblems().stream())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    func (mms *MainModuleSet) Len() int {
    	if mms == nil {
    		return 0
    	}
    	return len(mms.versions)
    }
    
    // ModContainingCWD returns the main module containing the working directory,
    // or module.Version{} if none of the main modules contain the working
    // directory.
    func (mms *MainModuleSet) ModContainingCWD() module.Version {
    	return mms.modContainingCWD
    }
    
    func (mms *MainModuleSet) HighestReplaced() map[string]string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			// Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)
    			// doesn't have -Wno-unneeded-internal-declaration, so we need yet another
    			// flag to disable the warning. Yes, really good diagnostics, clang.
    			"-Wno-unknown-warning-option",
    			"-Wno-unneeded-internal-declaration",
    			"-Wno-unused-function",
    			"-Qunused-arguments",
    			// Clang embeds prototypes for some builtin functions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link NavigableSet} whose contents will never change, with many other important properties
     * detailed at {@link ImmutableCollection}.
     *
     * <p><b>Warning:</b> as with any sorted collection, you are strongly advised not to use a {@link
     * Comparator} or {@link Comparable} type whose comparison behavior is <i>inconsistent with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    // Cgo incorrectly computed the alignment of structs
    // with no Go accessible fields as 0, and then panicked on
    // modulo-by-zero computations.
    
    // issue 50987
    // disable arm64 GCC warnings
    #cgo CFLAGS: -Wno-psabi -Wno-unknown-warning-option
    
    typedef struct {
    } foo;
    
    typedef struct {
    	int x : 1;
    } bar;
    
    int issue5242(foo f, bar b) {
    	return 5242;
    }
    
    // issue 5337
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    }
    
    func SelectCoverPackages(roots []*Package, match []func(*Package) bool, op string) []*Package {
    	var warntag string
    	var includeMain bool
    	switch op {
    	case "build":
    		warntag = "built"
    		includeMain = true
    	case "test":
    		warntag = "tested"
    	default:
    		panic("internal error, bad mode passed to SelectCoverPackages")
    	}
    
    	covered := []*Package{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
            removalListener.onRemoval(notification);
          } catch (Throwable e) {
            logger.log(Level.WARNING, "Exception thrown by removal listener", e);
          }
        }
      }
    
      @SuppressWarnings("unchecked")
      final Segment<K, V>[] newSegmentArray(int ssize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    	GOEXPERIMENT
    		Comma-separated list of toolchain experiments to enable or disable.
    		The list of available experiments may change arbitrarily over time.
    		See src/internal/goexperiment/flags.go for currently valid values.
    		Warning: This variable is provided for the development and testing
    		of the Go toolchain itself. Use beyond that purpose is unsupported.
    	GO_EXTLINK_ENABLED
    		Whether the linker should use external linking mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    			fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", mm.m.Path, mm.message)
    		}
    	}
    	var retractPath string
    	for _, mm := range retractions {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: warning: %v\n", mm.message)
    			if retractPath == "" {
    				retractPath = mm.m.Path
    			} else {
    				retractPath = "<module>"
    			}
    		}
    	}
    	if retractPath != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
            removalListener.onRemoval(notification);
          } catch (Throwable e) {
            logger.log(Level.WARNING, "Exception thrown by removal listener", e);
          }
        }
      }
    
      @SuppressWarnings("unchecked")
      final Segment<K, V>[] newSegmentArray(int ssize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top