Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 421 for excluding (0.16 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

    import java.lang.annotation.Target
    
    /**
     * Marks a test as flaky. The flaky tests are quarantined to run
     * at a special stage so it won't interrupt normal build pipeline.
     *
     * For Spock tests, including/excluding tests annotated by this annotation is handled by `SpockConfig.groovy` in classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

    public interface ScriptFileResolver {
    
        /**
         * Resolves a script file.
         *
         * @param dir the directory in which to search
         * @param basename the base name of the script file, i.e. its file name excluding the extension
         * @return the resolved script file present on disk, or {@literal null} if none were found
         */
        @Nullable
        File resolveScriptFile(File dir, String basename);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilter.java

         *
         * @throws org.gradle.api.InvalidUserDataException if appliesTo is null.
         */
        void setAppliesTo(ResourceFilterAppliesTo appliesTo);
    
        /**
         * Specifies whether this ResourceFilter is including or excluding resources.  Default is EXCLUDE_ALL
         */
        ResourceFilterType getType();
    
        /**
         * Sets the ResourceFilterType
         *
         * @throws org.gradle.api.InvalidUserDataException if type is null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. architecture/standards/0002-avoid-using-java-serialization.md

    Java serialization tends to produce larger serialized objects because it includes class metadata and other overhead.
    
    - **Flexibility and Control:**
    Java serialization offers limited control over the serialization process, such as excluding certain fields, customizing naming conventions, and handling complex data structures more gracefully.
    
    - **Security:**
    Java serialization poses security risks, especially related to deserialization vulnerabilities.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/tokens.go

    const (
    	_    token = iota
    	_EOF       // EOF
    
    	// names and literals
    	_Name    // name
    	_Literal // literal
    
    	// operators and operations
    	// _Operator is excluding '*' (_Star)
    	_Operator // op
    	_AssignOp // op=
    	_IncOp    // opop
    	_Assign   // =
    	_Define   // :=
    	_Arrow    // <-
    	_Star     // *
    
    	// delimiters
    	_Lparen    // (
    	_Lbrack    // [
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/web-platform-test-toascii.json

      },
      {
        "input": "x01234567890123456789012345678901234567890123456789012345678901x.ß",
        "output": "x01234567890123456789012345678901234567890123456789012345678901x.xn--zca"
      },
      {
        "comment": "Domain excluding TLD longer than 253 code points",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

         */
        final List<PerformanceReportScenarioHistoryExecution> currentExecutions
    
        /**
         * The execution read from performance database, excluding current executions
         */
        final List<PerformanceReportScenarioHistoryExecution> historyExecutions
    
        final boolean crossBuild
    
        final boolean fromCache
    
        PerformanceReportScenario(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1/generated.proto

      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // 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
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

     */
    @HasInternalProtocol
    public interface Manifest {
        /**
         * Returns the main attributes of the manifest.
         */
        Attributes getAttributes();
    
        /**
         * Returns the sections of the manifest (excluding the main section).
         *
         * @return A map with the sections, where the key represents the section name and value the section attributes.
         */
        Map<String, Attributes> getSections();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

           {{"e"}, "Mul", {"d", "c"}, {{"T", DT_FLOAT}}},
           {{"f"}, "Add", {"e", "a"}, {{"T", DT_FLOAT}}},
           {{"g"}, "Mul", {"f", "b"}, {{"T", DT_FLOAT}}},
           // Force two clusters by excluding this node explicitly.
           {{"h"}, "Add", {"g", "f"}, {{"T", DT_FLOAT}, {"_XlaCompile", false}}},
           {{"i"}, "Add", {"h", "e"}, {{"T", DT_FLOAT}}},
           {{"j"}, "Add", {"i", "h"}, {{"T", DT_FLOAT}}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top