Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 144 for Excluded (0.21 sec)

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

    }
    
    var readModGraphDebugOnce sync.Once
    
    // readModGraph reads and returns the module dependency graph starting at the
    // given roots.
    //
    // The requirements of the module versions found in the unprune map are included
    // in the graph even if they would normally be pruned out.
    //
    // Unlike LoadModGraph, readModGraph does not attempt to diagnose or update
    // inconsistent roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link org.gradle.api.file.FileCollection}. The contents of the collection are included in the returned collection.</li>
         *
         * <li>A {@link org.gradle.api.file.FileTree} or {@link org.gradle.api.file.DirectoryTree}. The contents of the tree are included in the returned collection.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/go/build/build.go

    type fileEmbed struct {
    	pattern string
    	pos     token.Position
    }
    
    // matchFile determines whether the file with the given name in the given directory
    // should be included in the package being constructed.
    // If the file should be included, matchFile returns a non-nil *fileInfo (and a nil error).
    // Non-nil errors are reserved for unexpected problems.
    //
    // If name denotes a Go program, matchFile reads until the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                result.addAll(((ConfigurationInternal) config).getAllExcludeRules());
            }
            return result;
        }
    
        /**
         * Synchronize read access to excludes. Mutation does not need to be thread-safe.
         */
        private synchronized void initExcludeRules() {
            if (parsedExcludeRules == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    	check.rawExpr(nil, x, e, nil, allowGeneric)
    	check.exclude(x, 1<<novalue)
    	check.singleValue(x)
    }
    
    // exclude reports an error if x.mode is in modeset and sets x.mode to invalid.
    // The modeset may contain any of 1<<novalue, 1<<builtin, 1<<typexpr.
    func (check *Checker) exclude(x *operand, modeset uint) {
    	if modeset&(1<<x.mode) != 0 {
    		var msg string
    		var code Code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    	check.rawExpr(nil, x, e, nil, allowGeneric)
    	check.exclude(x, 1<<novalue)
    	check.singleValue(x)
    }
    
    // exclude reports an error if x.mode is in modeset and sets x.mode to invalid.
    // The modeset may contain any of 1<<novalue, 1<<builtin, 1<<typexpr.
    func (check *Checker) exclude(x *operand, modeset uint) {
    	if modeset&(1<<x.mode) != 0 {
    		var msg string
    		var code Code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.file.CopySpec.exclude(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (CopySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # the shared library, only export the core TF API functions to avoid
    # causing library conflicts (e.g., those reported in github issue 1924).
    # On Linux, tell the linker (-Wl,<option>) to use a version script that
    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    # an "-exported_symbols_list" command.  -z defs disallows undefined
    # symbols in object files.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In particular, the same file is used for both the (sub)projects and `buildSrc`.
    
    If an included build is used:
    
    - the configuration file of the _current_ build is used for verification
    - so if the included build itself uses verification, its configuration is ignored in favor of the current one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Upgrade to Ant 1.10.13
    
    Ant has been updated to https://github.com/apache/ant/blob/rel/1.10.13/WHATSNEW[Ant 1.10.13].
    
    Since the previous version was 1.10.11, the https://github.com/apache/ant/blob/rel/1.10.12/WHATSNEW[1.10.12] changes are also included.
    
    ==== Upgrade to CodeNarc 3.2.0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top