Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for instrumentation (0.24 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultAgentStatus.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.agent;
    
    import org.gradle.internal.lazy.Lazy;
    
    class DefaultAgentStatus implements AgentStatus {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.agent
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheFixture
    import org.gradle.integtests.fixtures.daemon.DaemonLogsAnalyzer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

                // This doesn't apply the agent to the test process.
                "${prefix}TestRuntimeOnly"(project(":instrumentation-agent"))
                "${prefix}TestAgentsClasspath"(project(":instrumentation-agent"))
            }
        }
    }
    
    
    internal
    fun Project.addSourceSet(testType: TestType): SourceSet {
        val prefix = testType.prefix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/CurrentProcessTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.internal.instrumentation.agent.AgentUtils
    import org.gradle.internal.jvm.Jvm
    import spock.lang.Specification
    
    import static org.gradle.process.internal.CurrentProcess.inferJvmOptions
    
    class CurrentProcessTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/post_calibration.cc

    absl::StatusOr<ModuleOp> PostCalibrationComponent::Run(
        ModuleOp module_op, const QuantizationConfig& config) {
      TF_RETURN_IF_ERROR(RunPasses(
          kName, /*add_passes_func=*/
          [&config](PassManager& pm) {
            // Add instrumentation to save quantization report after quantization.
            pm.addInstrumentation(
                std::make_unique<SaveQuantizationReportInstrumentation>(
                    GetReportFilePath(config)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    dependencies {
        api(project(":internal-instrumentation-api"))
    
        api(libs.asm)
        api(libs.javaPoet)
        api(libs.jsr305)
    
        implementation(libs.asmTree)
        implementation(libs.jacksonAnnotations)
        implementation(libs.jacksonDatabind)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tests/fuzz/oss_fuzz_build.sh

    # limitations under the License.
    
    set -o nounset
    set -o pipefail
    set -o errexit
    set -x
    
    cd "${SRC}"
    git clone https://github.com/AdamKorcz/instrumentation
    cd instrumentation
    go run main.go --target_dir="${SRC}"/istio --check_io_length=true
    cd "${SRC}"/istio
    
    sed -i 's/\"testing\"/\"github.com\/AdamKorcz\/go-118-fuzz-build\/testing\"/g' "${SRC}"/istio/pkg/fuzz/util.go
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedDeprecation.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.api.annotations;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildListenerFactoryTest.groovy

    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.project.ProjectState
    import org.gradle.api.invocation.Gradle
    import org.gradle.internal.instrumentation.agent.AgentStatus
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import java.util.function.Function
    
    class BuildSrcBuildListenerFactoryTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/GradleReferencedType.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.processor.codegen;
    
    import com.squareup.javapoet.ClassName;
    import com.squareup.javapoet.TypeName;
    import org.objectweb.asm.Type;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top