Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 205 for nack (0.05 sec)

  1. hack/verify-external-dependencies-version.sh

    # limitations under the License.
    
    # This script verifies that dependencies are up-to-date across different files
    # Usage: `hack/verify-external-dependencies-version.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # Ensure that we find the binaries we build before anything else.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 08:20:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
     * When the system wall clock jumps back in time, this clock will effectively slow down until it is back in sync.
     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. hack/make-rules/verify.sh

      "verify-vendor-licenses.sh"
    )
    
    while IFS='' read -r line; do EXCLUDED_CHECKS+=("$line"); done < <(ls "${EXCLUDED_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    while IFS='' read -r line; do QUICK_CHECKS+=("$line"); done < <(ls "${QUICK_PATTERNS[@]/#/${KUBE_ROOT}/hack/}" 2>/dev/null || true)
    TARGET_LIST=()
    IFS=" " read -r -a TARGET_LIST <<< "${WHAT:-}"
    
    function is-excluded {
      for e in "${EXCLUDED_CHECKS[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            assertEquals( Artifact.SCOPE_COMPILE, artifact.getScope(), "dependency artifact has wrong scope." );
    
            //check for back-propagation of default scope.
            assertEquals( Artifact.SCOPE_COMPILE, dep.getScope(), "default scope NOT back-propagated to dependency." );
            */
        }
    
        @Test
        @Disabled
        void testShouldUseInjectedTestScopeFromDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. hack/verify-test-featuregates.sh

    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. hack/lib/init.sh

    export no_proxy="127.0.0.1,localhost${no_proxy:+,${no_proxy}}"
    
    source "${KUBE_ROOT}/hack/lib/util.sh"
    source "${KUBE_ROOT}/hack/lib/logging.sh"
    
    kube::log::install_errexit
    kube::util::ensure-bash-version
    
    source "${KUBE_ROOT}/hack/lib/version.sh"
    source "${KUBE_ROOT}/hack/lib/golang.sh"
    source "${KUBE_ROOT}/hack/lib/etcd.sh"
    
    # list of all available group versions.  This should be used when generated code
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

        /**
         * A compound access that read, compute, and write the computed value back. Note that calls to `<op>Assign` is not represented by this.
         */
        public class CompoundAssign(
            operationPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol>,
            kind: Kind,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

            const int x_row =
                matmul_op.getAdjX() ? shape_x.back() : *(shape_x.rbegin() + 1);
            const int x_col =
                !matmul_op.getAdjX() ? shape_x.back() : *(shape_x.rbegin() + 1);
    
            const int y_row =
                matmul_op.getAdjY() ? shape_y.back() : *(shape_y.rbegin() + 1);
            const int y_col =
                !matmul_op.getAdjY() ? shape_y.back() : *(shape_y.rbegin() + 1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * The supertype of all objects sent from the daemon server back to the client.
     * <p>
     * Specific subclass types carry extra context, e.g. whether it was a failure or successful result.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top