Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 443 for parity (0.09 sec)

  1. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/ForExternalUse.java

     * This is due to the contract of this public API that is stricter than what is expected in the Gradle internals.
     * <p>
     * For example, the implementation of such an API might add validations checking third-party
     * plugins or build scripts for compliance with some limitations imposed by Gradle. In the internal
     * code, one does not expect such limitations.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

          </svg>');
    }
    /*
     * Styles for header/section anchor links
     */
    a.anchor-link {
        opacity: 0;
        transition: opacity 0.1s;
    }
    :hover > a.anchor-link {
        opacity: 80%;
    }
    a.anchor-link:hover,
    a.anchor-link:focus-visible,
    a.anchor-link.visible {
        opacity: 100%;
    }
    a.anchor-link > img {
        width: 0.9em;
        height: 0.9em;
    }
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. .github/workflows/scorecard.yml

    # This workflow uses actions that are not certified by GitHub. They are provided
    # by a third-party and are governed by separate terms of service, privacy
    # policy, and support documentation.
    
    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        on the date Contributor first distributes or otherwise makes the
        Modifications available to a third party.
    
        (d) Notwithstanding Section 2.2(b) above, no patent license is
        granted: (1) for any code that Contributor has deleted from the
        Contributor Version; (2) for infringements caused by: (i) third
        party modifications of Contributor Version, or (ii) the combination
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

            }
        }
    
        /**
         * Provides safe access to the system properties, preventing concurrent {@link #withSystemProperty(String, String, Factory)} calls.
         *
         * This can be used to wrap 3rd party APIs that iterate over the system properties, so they won't result in {@link java.util.ConcurrentModificationException}s.
         *
         * This method should not be used when you need to temporarily change system properties.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-multiple-params.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="19-21"
        {!> ../../../docs_src/body_multiple_params/tutorial001.py!}
        ```
    
    !!! note "Nota"
        Repare que, neste caso, o `item` que seria capturado a partir do corpo é opcional. Visto que ele possui `None` como valor padrão.
    
    ## Múltiplos parâmetros de corpo
    
    No exemplo anterior, as *operações de rota* esperariam um JSON no corpo contendo os atributos de um `Item`, exemplo:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/database/sql/doc.txt

      should expose an ideal database that's not finicky about how it's
      accessed, even if that's not true.
    
    * Provide optional interfaces in sql/driver for drivers to implement
      for special cases or fastpaths.  But the only party that knows about
      those is the sql package.  To user code, some stuff just might start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/SkipOnlyIfTaskExecuter.java

            Spec<? super TaskInternal> unsatisfiedSpec = null;
            try {
                Spec<? super TaskInternal> onlyIf = task.getOnlyIf();
                // Some third-party plugins override getOnlyIf, returning a generic Spec
                if (onlyIf instanceof DescribingAndSpec) {
                    DescribingAndSpec<? super TaskInternal> describingAndSpec = Cast.uncheckedCast(onlyIf);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 11:36:30 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

    #include "tsl/platform/statusor.h"
    
    template <typename T>
    bool WasGraphAnalysisFailure(tsl::StatusOr<T> status) {
      return (status.status() ==
              tensorflow::CompileToHloGraphAnalysisFailedError());
    }
    
    /* The third party version of the Graph Analysis always returns disabled so
     * these matchers short circuit on that error. */
    MATCHER(IsOkOrFiltered,
            "Status was OK or equal to the Graph Analysis failure") {
      bool is_ok = arg.ok();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt

    A. Unique TensorFlower <******@****.***> 1690483910 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top