Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 759 for excluded (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

             */
            Selected(true),
    
            /**
             * An evicted component has been evicted and will never, ever be chosen starting from the moment it is evicted.
             * Either because it has been excluded, or because conflict resolution selected a different version.
             */
            Evicted(false);
    
            private final boolean candidateForConflictResolution;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    In general the goroutine may not be executing in these special time ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/validtype.go

    				// before type checking is complete, any exported type that is invalid
    				// will have an invalid underlying type and we can't reach here with
    				// such a type (invalid types are excluded above).
    				// Thus, if we reach here with a type t, both t and t.Origin() (if
    				// different in the first place) must be from the current package;
    				// they cannot have been imported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/go/types/validtype.go

    				// before type checking is complete, any exported type that is invalid
    				// will have an invalid underlying type and we can't reach here with
    				// such a type (invalid types are excluded above).
    				// Thus, if we reach here with a type t, both t and t.Origin() (if
    				// different in the first place) must be from the current package;
    				// they cannot have been imported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
         * A unique constant for all non-modular dependencies.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                lib {
                    file("exclude").text = "exclude"
                    file("include").text = "include"
                }
            }
            and:
            buildFile << """
            task extract(type: Copy) {
                from $unarchive ("$archiveFile")
    
                exclude { details ->
                    details.isDirectory() ||
                    details.file.text.contains('exclude')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

        }
    
        public void setPlusConfigurations(Collection<Configuration> plusConfigurations) {
            this.plusConfigurations = plusConfigurations;
        }
    
        /**
         * The configurations whose files are to be excluded from the classpath entries.
         * <p>
         * See {@link EclipseClasspath} for an example.
         */
        public Collection<Configuration> getMinusConfigurations() {
            return minusConfigurations;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * @param projects the projects to exclude
         * @return this MavenExecutionRequest
         * @since 3.2
         * @deprecated Since Maven 4: use {@link #getProjectActivation()}.
         */
        @Deprecated
        MavenExecutionRequest setExcludedProjects(List<String> projects);
    
        /**
         * @return the excluded projects, never {@code null}
         * @since 3.2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    var map_MatchResources = map[string]string{
    	"":                     "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    // does not account for space used by the Go binary and memory
    // external to Go, such as memory managed by the underlying system
    // on behalf of the process, or memory managed by non-Go code inside
    // the same process. Examples of excluded memory sources include: OS
    // kernel memory held on behalf of the process, memory allocated by
    // C code, and memory mapped by syscall.Mmap (because it is not
    // managed by the Go runtime).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top