Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for processDir (0.19 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

    import org.gradle.internal.instrumentation.model.CallableInfo;
    import org.gradle.internal.instrumentation.model.ParameterInfo;
    import org.gradle.internal.instrumentation.processor.codegen.InstrumentationResourceGenerator;
    import org.objectweb.asm.Type;
    
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    import java.io.UncheckedIOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu.go

    // Copyright 2018 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 cpu implements processor feature detection for
    // various CPU architectures.
    package cpu
    
    import (
    	"os"
    	"strings"
    )
    
    // Initialized reports whether the CPU features were initialized.
    //
    // For some GOOS/GOARCH combinations initialization of the CPU features depends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/build.gradle.kts

    }
    
    description = "Collection of test fixtures for integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services")) {
            because("Part of the public API, used by spock AST transformer")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/bug/bug.go

    	fmt.Fprintf(w, "</pre>\n")
    	fmt.Fprintf(w, "\n")
    }
    
    func printEnvDetails(w io.Writer) {
    	fmt.Fprintf(w, "### What operating system and processor architecture are you using (`go env`)?\n\n")
    	fmt.Fprintf(w, "<details><summary><code>go env</code> Output</summary><br><pre>\n")
    	fmt.Fprintf(w, "$ go env\n")
    	printGoEnv(w)
    	printGoDetails(w)
    	printOSDetails(w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//   If both CpuWeight and CpuMaximum are set - ContainerD catches this invalid case and returns an error instead.
    		resources.CpuMaximum = calculateCPUMaximum(cpuLimit, int64(winstats.ProcessorCount()))
    	}
    
    	// The processor resource controls are mutually exclusive on
    	// Windows Server Containers, the order of precedence is
    	// CPUCount first, then CPUMaximum.
    	if resources.CpuCount > 0 {
    		if resources.CpuMaximum > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProviderTest.groovy

            then:
            0 * resolveState.resolve()
            componentMetadata.status == 'foo'
            componentMetadata.statusScheme == ['foo', 'bar']
        }
    
        def "can use a component metadata processor to tweak user provided metadata"() {
            def processedMetadata = Mock(ComponentMetadata) {
                getStatus() >> 'from rule'
                getStatusScheme() >> ['from', 'rule']
            }
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

        }
    
        private static String[] determinePsCommand() {
            if (isWindows()) {
                return new String[]{"wmic", "process", "get", "processid,commandline"};
            } else if (isMacOS()) {
                return new String[]{"ps", "x", "-o", "pid,command"};
            } else {
                return new String[]{"ps", "x", "-o", "pid,cmd"};
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top