Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for processDir (0.2 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            this.clock = clock;
            this.actorFactory = actorFactory;
        }
    
        @Override
        public void startProcessing(TestResultProcessor resultProcessor) {
            // Wrap the processor in an actor, to make it thread-safe
            resultProcessorActor = actorFactory.createBlockingActor(resultProcessor);
            this.resultProcessor = resultProcessorActor.getProxy(TestResultProcessor.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            file('src/main/java/Square.java') << 'public class Square extends Rectangle {}'
    
            when:
            fails 'compileJava'
    
            then:
            failureHasCause("Cannot specify -processorpath or --processor-path via `CompileOptions.compilerArgs`. Use the `CompileOptions.annotationProcessorPath` property instead.")
        }
    
        def "fails when a -J (compiler JVM) flag is set on compilerArgs"() {
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    That "wait for something else" normally refers to <abbr title="Input and Output">I/O</abbr> operations that are relatively "slow" (compared to the speed of the processor and the RAM memory), like waiting for:
    
    * the data from the client to be sent through the network
    * the data sent by your program to be received by the client through the network
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <3> Add the Auto Value annotation processor to the suite's annotation processor classpath so that it will be run when compiling the tests.
    
    == Configure dependencies of a test suite to reference project outputs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. .teamcity/subprojects.json

        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "internal-instrumentation-processor",
        "path": "platforms/core-runtime/internal-instrumentation-processor",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "internal-integ-testing",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/emit.go

    // 's', returning an error if something went wrong.
    func (s *emitState) openCounterFile(metaHash [16]byte) error {
    	processID := os.Getpid()
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, processID, time.Now().UnixNano())
    	s.cfname = filepath.Join(s.outdir, fn)
    	s.cftmp = filepath.Join(s.outdir, "tmp."+fn)
    	var err error
    	s.cf, err = os.Create(s.cftmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    // or "export" barrier). Some form of synchronization is required
    // between initializing an object and making that object accessible to
    // another processor. Without synchronization, the initialization
    // writes and the "publication" write may be reordered, allowing the
    // other processor to follow the pointer and observe an uninitialized
    // object. In general, higher-level synchronization should be used,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. pkg/log/options.go

    	}
    
    	return s, level, nil
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/syscall_windows.go

    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    )
    
    const MAX_MODULE_NAME32 = 255
    
    type ModuleEntry32 struct {
    	Size         uint32
    	ModuleID     uint32
    	ProcessID    uint32
    	GlblcntUsage uint32
    	ProccntUsage uint32
    	ModBaseAddr  uintptr
    	ModBaseSize  uint32
    	ModuleHandle syscall.Handle
    	Module       [MAX_MODULE_NAME32 + 1]uint16
    	ExePath      [syscall.MAX_PATH]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. settings.gradle.kts

            subproject("instrumentation-agent-services")
            subproject("instrumentation-declarations")
            subproject("internal-instrumentation-api")
            subproject("internal-instrumentation-processor")
            subproject("io")
            subproject("stdlib-java-extensions")
            subproject("launcher")
            subproject("logging")
            subproject("logging-api")
            subproject("messaging")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top