Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,544 for whereIs (0.12 sec)

  1. src/cmd/go/testdata/script/version_buildvcs_git.txt

    [!git] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # If there's an orphan .git file left by a git submodule, it's not a git
    # repository, and there's no VCS info.
    cd ../gitsubmodule
    go install
    go version -m $GOBIN/gitsubmodule$GOEXE
    ! stdout vcs.revision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

            } catch (Throwable t) {
                // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                notifyEnterprisePluginManager(Result.failed(t));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. hack/verify-non-mutating-validation.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    mutationOutput=$(find . -name validation.go -print0 | xargs -0 egrep -n ' = old' | grep -v '// +k8s:verify-mutation:reason=clone' || true)
    foundMutation=${#mutationOutput}
    # when there's no match, there is a newline
    if [ "$foundMutation" -gt "1" ]; then
      echo "${mutationOutput}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 08 18:37:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    In this case, the original path `/app` would actually be served at `/api/v1/app`.
    
    Even though all your code is written assuming there's just `/app`.
    
    ```Python hl_lines="6"
    {!../../../docs_src/behind_a_proxy/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    You can obtain an instance of `ObjectFactory` using the `project.objects` property.
    Here's a simple example demonstrating how to use `ObjectFactory` to create a property and set its value:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=object-factory]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

        void failed(ModuleVersionResolveException failure);
    
        /**
         * Registers the list of versions that were attempted for this module, but didn't match
         * the selector. This method is used for dynamic modules, when there's often more than one
         * version which can match, but we actually select (or reject) more before selecting.
         *
         * @param unmatchedVersions a collection of unmatched versions
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. releasenotes/notes/48684.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 48665
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 207 bytes
    - Viewed (0)
  8. docs_src/dependencies/tutorial008d.py

            raise InternalError(
                f"The portal gun is too dangerous to be owned by {username}"
            )
        if item_id != "plumbus":
            raise HTTPException(
                status_code=404, detail="Item not found, there's only a plumbus here"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 694 bytes
    - Viewed (0)
  9. docs_src/dependencies/tutorial008d_an.py

            raise InternalError(
                f"The portal gun is too dangerous to be owned by {username}"
            )
        if item_id != "plumbus":
            raise HTTPException(
                status_code=404, detail="Item not found, there's only a plumbus here"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 744 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.h

    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Legalizes the given mlir::Module into XLA HLO. If successful, returns the
    // compiled XLA HLO. V1 of the tf2xla uses MLIR whereas V0 does not use MLIR.
    //
    // Inputs:
    //  computation - The MLIR module op. It currently takes in
    //  tpu::FunctionToHloArgs but this is deprecated. arg_shapes - The shapes of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 07:32:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top