Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for instrument2 (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                            parameters.targetColor.set('red')
                        }
                        registerTransform(MakeColor) {
                            from.attribute(artifactType, 'red').attribute(instrumented, '${NOT_INSTRUMENTED.value}')
                            to.attribute(artifactType, 'green').attribute(instrumented, '${NOT_INSTRUMENTED.value}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    	}
    	return ""
    }
    
    // IsNoInstrumentPkg reports whether p is a package that
    // should not be instrumented.
    func IsNoInstrumentPkg(p *Pkg) bool {
    	return objabi.LookupPkgSpecial(p.Path).NoInstrument
    }
    
    // IsNoRacePkg reports whether p is a package that
    // should not be race instrumented.
    func IsNoRacePkg(p *Pkg) bool {
    	return objabi.LookupPkgSpecial(p.Path).NoRaceFunc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    As an example, imagine you want to use the output of a Java compilation task — via the `destinationDir` property — as the input of a custom task that instruments a set of files containing Java bytecode. This custom task, which we’ll call `Instrument`, has a `classFiles` property annotated with `@InputFiles`. You might initially try to configure the task like so:
    
    .Failed attempt at setting up an inferred task dependency
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			}
    			for _, p := range testCoverPkgs {
    				p.Internal.Cover.GenMeta = true
    			}
    		}
    	}
    
    	// Inform the compiler that it should instrument the binary at
    	// build-time when fuzzing is enabled.
    	if testFuzz != "" {
    		// Don't instrument packages which may affect coverage guidance but are
    		// unlikely to be useful. Most of these are used by the testing or
    		// internal/fuzz packages concurrently with fuzzing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		}
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.KubeletTracing) {
    		clientConfig.Wrap(tracing.WrapperFor(tp))
    	}
    	return clientConfig, onHeartbeatFailure, nil
    }
    
    // updateDialer instruments a restconfig with a dial. the returned function allows forcefully closing all active connections.
    func updateDialer(clientConfig *restclient.Config) (func(), error) {
    	if clientConfig.Transport != nil || clientConfig.Dial != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	logger.V(2).Info("the scheduler starts to work with those plugins", "Plugins", *f.ListPlugins())
    	f.setInstrumentedPlugins()
    	return f, nil
    }
    
    // setInstrumentedPlugins initializes instrumented plugins from current plugins that frameworkImpl has.
    func (f *frameworkImpl) setInstrumentedPlugins() {
    	// Cache metric streams for prefilter and filter plugins.
    	for i, pl := range f.preFilterPlugins {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top