Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for excluding (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

        /**
         * Returns whether this dependency should be resolved including or excluding its transitive dependencies.
         *
         * @see #setTransitive(boolean)
         */
        boolean isTransitive();
    
        /**
         * Sets whether this dependency should be resolved including or excluding its transitive dependencies. The artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. 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)
  3. licenses/github.com/hashicorp/go-version/LICENSE

         license agreements (excluding distributors and resellers) which have been
         validly granted by You or Your distributors under this License prior to
         termination shall survive termination.
    
    6. Disclaimer of Warranty
    
       Covered Software is provided under this License on an “as is” basis, without
       warranty of any kind, either expressed, implied, or statutory, including,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. cmd/batch-job-common-types.go

    // column information guiding user to fix syntax errors
    type BatchJobYamlErr struct {
    	line, col int
    	msg       string
    }
    
    // message returns the error message excluding line, col information.
    // Intended to be used in unit tests.
    func (b BatchJobYamlErr) message() string {
    	return b.msg
    }
    
    // Error implements Error interface
    func (b BatchJobYamlErr) Error() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val GRADLE_INSTALL_PATH = "gradle_installPath"
    
    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
         *
         * Default value (if absent) is "include".
         */
        const val FLAKY_TEST = "flakyTests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    minimum extent necessary to make such provision valid and enforceable.
    
    If Recipient institutes patent litigation against any entity
    (including a cross-claim or counterclaim in a lawsuit) alleging that the
    Program itself (excluding combinations of the Program with other software
    or hardware) infringes such Recipient's patent(s), then such Recipient's
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/time/format.go

    // range -23 through +23 excluding zero.
    func parseGMT(value string) int {
    	value = value[3:]
    	if len(value) == 0 {
    		return 3
    	}
    
    	return 3 + parseSignedOffset(value)
    }
    
    // parseSignedOffset parses a signed timezone offset (e.g. "+03" or "-04").
    // The function checks for a signed number in the range -23 through +23 excluding zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    	//     *syntax.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[syntax.Node]Object
    
    	// Selections maps selector expressions (excluding qualified identifiers)
    	// to their corresponding selections.
    	Selections map[*syntax.SelectorExpr]*Selection
    
    	// Scopes maps syntax.Nodes to the scopes they define. Package scopes are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/math/big/float.go

    		acc := makeAcc(x.neg)
    		if x.exp <= 0 {
    			// 0 < |x| < 1
    			return 0, acc
    		}
    		// x.exp > 0
    
    		// 1 <= |x| < +Inf
    		if x.exp <= 63 {
    			// i = trunc(x) fits into an int64 (excluding math.MinInt64)
    			i := int64(msb64(x.mant) >> (64 - uint32(x.exp)))
    			if x.neg {
    				i = -i
    			}
    			if x.MinPrec() <= uint(x.exp) {
    				return i, Exact
    			}
    			return i, acc // x truncated
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. configure.py

                print(
                    'ERROR: TensorFlow only supports small CUDA compute'
                    ' capabilities of sm_30 and higher. Please re-specify the list'
                    ' of compute capabilities excluding version %s.' % ver)
                all_valid = False
              if ver < 35:
                print('WARNING: XLA does not support CUDA compute capabilities '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top