Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,571 for excluding (0.49 sec)

  1. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                            .expectResult(PARENT_MODULE, MODULE_C, MODULE_A, MODULE_C_2),
                    scenario("Excluding a project also excludes its children")
                            .inactiveRequiredProjects(MODULE_C)
                            .expectResult(PARENT_MODULE, MODULE_A, MODULE_B, INDEPENDENT_MODULE),
                    scenario("Excluding an also make dependency from resumeFrom does take its transitive dependency")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  2. src/go/types/commentMap_test.go

    package types_test
    
    import (
    	"fmt"
    	"go/scanner"
    	"go/token"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    type comment struct {
    	line, col int    // comment position
    	text      string // comment text, excluding "//", "/*", or "*/"
    }
    
    // commentMap collects all comments in the given src with comment text
    // that matches the supplied regular expression rx and returns them as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/text/tabwriter/tabwriter.go

    	padding  int
    	padbytes [8]byte
    	flags    uint
    
    	// current state
    	buf     []byte   // collected text excluding tabs or line breaks
    	pos     int      // buffer position up to which cell.width of incomplete cell has been computed
    	cell    cell     // current incomplete cell; cell.width is up to buf[pos] excluding ignored sections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. CREDITS

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  5. platforms/jvm/war/src/test/groovy/org/gradle/api/plugins/WarPluginTest.groovy

            }
    
            then:
            def task = project.tasks[WarPlugin.WAR_TASK_NAME]
            ':child:jar' in task.taskDependencies.getDependencies(task)*.path
        }
    
        def "uses runtime classpath excluding provided as classpath"() {
            given:
            File compileJar = project.file('compile.jar')
            File compileOnlyJar = project.file('compileOnly.jar')
            File runtimeJar = project.file('runtime.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

        dependency.apply {
            dependencyConfiguration()
            add(configuration, this)
        }
    
    
    /**
     * Adds an exclude rule to exclude transitive dependencies of this dependency.
     *
     * Excluding a particular transitive dependency does not guarantee that it does not show up
     * in the dependencies of a given configuration.
     * For example, some other dependency, which does not have any exclude rules,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/compute_cost.cc

    namespace TFL {
    namespace tac {
    namespace {
    
    // We will caculate the total compute cost for each Func Op.
    //
    // The compute cost is simply an add-up of the costs of all the operations
    // within the FuncOp. (Excluding const ops since they're just "data".)
    // We will ignore quant/dequant/requant costs within the Func Op as well,
    // intuition:
    //
    // The assumpution is that quant/dequant/requant will only happen at the begin
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. licenses/sigs.k8s.io/yaml/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. pkg/apis/node/types.go

    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    	// be rejected in admission.
    	// +optional
    	NodeSelector map[string]string
    
    	// tolerations are appended (excluding duplicates) to pods running with this
    	// RuntimeClass during admission, effectively unioning the set of nodes
    	// tolerated by the pod and the RuntimeClass.
    	// +optional
    	Tolerations []core.Toleration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top