Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 238 for debugLink (0.18 sec)

  1. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/api/plugins/AutoTestedSamplesGroovyIntegrationTest.groovy

     */
    class AutoTestedSamplesGroovyIntegrationTest extends AbstractAutoTestedSamplesTest {
        @Test
        void runSamples() {
            // for debugging purposes you can restrict the tests samples to only a single class
    //        includeOnly '**/Test.java'
            runSamplesFrom("src/main")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/integtests/samples/AutoTestedSamplesPluginsDistributionIntegrationTest.groovy

     */
    class AutoTestedSamplesPluginsDistributionIntegrationTest extends AbstractAutoTestedSamplesTest {
        @Test
        void runSamples() {
            // for debugging purposes you can restrict the tests samples to only a single class
    //        includeOnly '**/Test.java'
            runSamplesFrom("src/main")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractContextAwareModel.java

        public AbstractContextAwareModel(@Nullable String context) {
            this.context = context;
        }
    
        /**
         * The context where this dependency model was built from, used
         * for debugging and giving hints to the user.
         * It's intentionally not part of the identity.
         *
         * @return the context
         */
        @Nullable
        public String getContext() {
            return context;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug.h

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/debug/debug_options.pb.h"
    
    namespace tensorflow {
    
    // Initializes the pass manager with default options that make debugging easier.
    // The `out` method parameter is exposed for testing purposes and not intended
    // to be specified by client code.
    void InitPassManager(mlir::PassManager& pm,
                         const converter::DebugOptions& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 05:31:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/probe/probe.go

    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    	// Warning Result. Logically success, but with additional debugging information attached.
    	Warning Result = "warning"
    	// Failure Result
    	Failure Result = "failure"
    	// Unknown Result
    	Unknown Result = "unknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    // Passes in the program key to embedding ops, by moving the embedding ops
    // after the _TPUCompileMlir op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/docker/Dockerfile.proxyv2

    # Install Envoy.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/${SIDECAR} /usr/local/bin/${SIDECAR}
    
    # Environment variable indicating the exact proxy sha - for debugging or version-specific configs
    ENV ISTIO_META_ISTIO_PROXY_SHA $proxy_version
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-agent /usr/local/bin/pilot-agent
    
    # The pilot-agent will bootstrap Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/debug/dwarf/open.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package dwarf provides access to DWARF debugging information loaded from
    executable files, as defined in the DWARF 2.0 Standard at
    http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
    
    # Security
    
    This package is not designed to be hardened against adversarial inputs, and is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithNativeRuntime.java

        /**
         * Returns the base name of this component. This is used to calculate output file names.
         */
        Provider<String> getBaseName();
    
        /**
         * Returns true if this component has debugging enabled.
         */
        boolean isDebuggable();
    
        /**
         * Returns true if this component is optimized.
         */
        boolean isOptimized();
    
        /**
         * Returns the target machine for this component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. Makefile.overrides.mk

    PHONYS := $(shell ls | grep -v Makefile)
    .PHONY: $(PHONYS)
    $(PHONYS):
    	@$(MAKE_DOCKER) $@
    endif
    
    # istioctl-install builds then installs istioctl into $GOPATH/BIN
    # Used for debugging istioctl during dev work
    .PHONY: istioctl-install
    istioctl-install: istioctl-install-container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top