Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for processDir (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

        public GraphVariantSelector(ResolutionFailureHandler failureHandler) {
            this.failureHandler = failureHandler;
        }
    
        /**
         * Returns the failure processor which must be used to report failures during variant selection.
         *
         * @return the failure processor
         */
        public ResolutionFailureHandler getFailureHandler() {
            return failureHandler;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

    import org.gradle.internal.rules.SpecRuleAction
    import org.gradle.util.AttributeTestUtil
    import spock.lang.Specification
    
    class ComponentSelectionRulesProcessorTest extends Specification {
        def processor = new ComponentSelectionRulesProcessor()
        def rules = []
        ComponentSelectionInternal componentSelection
        def metadataProvider = Mock(MetadataProvider)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    		return fmt.Errorf("xcrun simctl launch booted %q: %v", bundleID, err)
    	}
    	var processID int
    	var ignore string
    	if _, err := fmt.Sscanf(string(out), "%s %d", &ignore, &processID); err != nil {
    		return fmt.Errorf("runSimulator: couldn't find processID from `simctl launch`: %v (%q)", err, out)
    	}
    	_, err = runLLDB("ios-simulator", appdir, strconv.Itoa(processID), args)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                }
            };
    
            final boolean shouldProcessAnnotations = shouldProcessAnnotations(spec);
            if (shouldProcessAnnotations) {
                // If an annotation processor is detected, we need to force Java stub generation, so the we can process annotations on Groovy classes
                // We are forcing stub generation by tricking the groovy compiler into thinking there are java files to compile.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/service.go

    	CurrentState            uint32
    	ControlsAccepted        uint32
    	Win32ExitCode           uint32
    	ServiceSpecificExitCode uint32
    	CheckPoint              uint32
    	WaitHint                uint32
    	ProcessId               uint32
    	ServiceFlags            uint32
    }
    
    type ENUM_SERVICE_STATUS_PROCESS struct {
    	ServiceName          *uint16
    	DisplayName          *uint16
    	ServiceStatusProcess SERVICE_STATUS_PROCESS
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

         *
         * @since 3.4
         */
        public static final String COMPILE_CLASSPATH_CONFIGURATION_NAME = JvmConstants.COMPILE_CLASSPATH_CONFIGURATION_NAME;
    
        /**
         * The name of the annotation processor configuration.
         *
         * @since 4.6
         */
        public static final String ANNOTATION_PROCESSOR_CONFIGURATION_NAME = JvmConstants.ANNOTATION_PROCESSOR_CONFIGURATION_NAME;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. maven-core/plugin-manager.txt

    - how to deal with resolution from different places like local/remote/workspace
    - how to incorporate the metadata processor to start with
    - create a hook to programmatically configure the test
    - create a plugin processor
    - directory
    - jar
    - hooks for loading
    
    - I could make an annotation that marked another class as its plugin discoverer, I could just add it to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    Gradle manages this through the concepts of _dimensions_ and _variants_.
    
    A dimension is simply a category, where each category is orthogonal to the rest.
    For example, the "build type" dimension is a category that includes debug and release.
    The "architecture" dimension covers processor architectures like x86-64 and x86.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.processor.codegen.jvmbytecode
    
    import com.google.testing.compile.Compilation
    import org.gradle.internal.instrumentation.InstrumentationCodeGenTest
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorType
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top