Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for excluded (0.46 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If a property is changing that does not have an impact on the runtime classpath, it may be desirable to exclude it from up-to-date checks and <<build_cache.adoc#build_cache,build cache>> key calculations.
    However, excluding the entire file would also exclude the properties that do have a runtime impact.
    In this case, properties can be excluded selectively from any or all properties files on the runtime classpath.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			if selector := state.informationsForClaim[index].availableOnNode; selector != nil {
    				if matches := selector.Match(node); !matches {
    					return statusUnschedulable(logger, "excluded by resource class node filter", "pod", klog.KObj(pod), "node", klog.KObj(node), "resourceclassName", claim.Spec.ResourceClassName)
    				}
    			}
    			// Can the builtin controller tell us whether the node is suitable?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    					// There are many places in the runtime
    					// where we can't do a full traceback.
    					// Ideally we'd list them all, but
    					// barring that allow anything in the
    					// runtime, unless explicitly excluded
    					// above.
    					mayBeLabeled = true
    				}
    			}
    		}
    		errorStack := func(f string, args ...any) {
    			var buf strings.Builder
    			fprintStack(&buf, s.Location)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    		mod = modOnly.Mod
    	}
    	return pkgMods, mod, err
    }
    
    // checkAllowedOr is like modload.CheckAllowed, but it always allows the requested
    // and current versions (even if they are retracted or otherwise excluded).
    func (r *resolver) checkAllowedOr(requested string, selected func(string) string) modload.AllowedFunc {
    	return func(ctx context.Context, m module.Version) error {
    		if m.Version == requested {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns true iff this test will appear in the XML report.
      bool is_reportable() const {
        // For now, the XML report includes all tests matching the filter.
        // In the future, we may trim tests that are excluded because of
        // sharding.
        return matches_filter_;
      }
    
      // Returns the result of the test.
      const TestResult* result() const { return &result_; }
    
     private:
    #if GTEST_HAS_DEATH_TEST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns true iff this test will appear in the XML report.
      bool is_reportable() const {
        // For now, the XML report includes all tests matching the filter.
        // In the future, we may trim tests that are excluded because of
        // sharding.
        return matches_filter_;
      }
    
      // Returns the result of the test.
      const TestResult* result() const { return &result_; }
    
     private:
    #if GTEST_HAS_DEATH_TEST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    // and give that file a name ending in "_test.go".
    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    // given request, as indicated by the environment variables
    // HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the lowercase versions
    // thereof). Requests use the proxy from the environment variable
    // matching their scheme, unless excluded by NO_PROXY.
    //
    // The environment values may be either a complete URL or a
    // "host[:port]", in which case the "http" scheme is assumed.
    // An error is returned if the value is a different form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This behavior is now consistent for `buildSrc` and included builds.
    
    ==== Changes to paths of included builds
    
    In order to handle conflicts between nested included build names better, Gradle now uses the directory hierarchy of included builds to assign the build path.
    If you are running tasks from the command line in nested included builds, then you may need to adjust your invocation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top