Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for inspectors (0.24 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         */
        default void ensureLegacySnapshottingInputsClosed() {}
    
        /**
         * Returns a type origin inspector, which is used for diagnostics (e.g error messages) to provide
         * more context about the origin of types (for example in what plugin a type is defined)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	}
    	return "", false
    }
    
    // checkCall triggers the print-specific checks if the call invokes a print function.
    func checkCall(pass *analysis.Pass) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		call := n.(*ast.CallExpr)
    		fn, kind := printfNameAndKind(pass, call)
    		switch kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetector.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    
    /**
     * Inspects a classpath to find annotation processors contained in it. If several versions of the same annotation processor are found,
     * the first one is returned, mimicking the behavior of {@link java.util.ServiceLoader}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    t-utils.jar:/home/tcagent1/agent/lib/annotations.jar:/home/tcagent1/agent/lib/serviceMessages.jar:/home/tcagent1/agent/lib/util.jar:/home/tcagent1/agent/lib/patches-impl.jar:/home/tcagent1/agent/lib/xml-rpc-wrapper.jar:/home/tcagent1/agent/lib/inspections-util.jar:/home/tcagent1/agent/lib/common.jar:/home/tcagent1/agent/lib/messages.jar:/home/tcagent1/agent/lib/commons-logging.jar:/home/tcagent1/agent/lib/commons-collections-3.2.2.jar:/home/tcagent1/agent/lib/openapi.jar:/home/tcagent1/agent/lib...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Package analysis defines the interface between a modular static
    analysis and an analysis driver program.
    
    # Background
    
    A static analysis is a function that inspects a package of Go code and
    reports a set of diagnostics (typically mistakes in the code), and
    perhaps produces other results as well, such as suggested refactorings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A {@link PayloadClassLoaderRegistry} used in the client JVM that maps classes loaded by application ClassLoaders. Inspects each class to calculate a minimal classpath to send across to the daemon process to recreate the ClassLoaders.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/generate.go

    	if err != nil {
    		return "", fmt.Errorf("failed to create tag webhook: %w", err)
    	}
    
    	if opts.Tag == DefaultRevisionName {
    		if !opts.Generate {
    			// deactivate other istio-injection=enabled injectors if using default revisions.
    			err := DeactivateIstioInjectionWebhook(ctx, client.Kube())
    			if err != nil {
    				return "", fmt.Errorf("failed deactivating existing default revision: %w", err)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        }
    
        @NotYetImplemented
        // Instrumentation with artifact transform doesn't support that yet
        def "transformation normalizes input jars before fingerprinting"() {
            requireOwnGradleUserHomeDir() // inspects cached content
    
            given:
            def buildClassSource = '''
                package org.gradle.test;
                public class BuildClass {
                    public String message() { return "hello world"; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device_lib.h

    // ParallelDevice.
    class ParallelTensor {
     public:
      // Construct a ParallelTensor from TensorHandles placed on the component
      // devices of a ParallelDevice. If called, ParallelTensor::Shape inspects
      // `components` to determine a shape.
      static std::unique_ptr<ParallelTensor> FromTensorHandles(
          const ParallelDevice& parallel_device,
          std::vector<TensorHandlePtr> components, TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/ensurer/strategy.go

    	} else {
    		revised = objectOps.DeepCopy(current)
    	}
    	if updateAnnotation {
    		setAutoUpdateAnnotation(revised, autoUpdateSpec)
    	}
    
    	return revised, true, nil
    }
    
    // shouldUpdateSpec inspects the auto-update annotation key and generation field to determine
    // whether the config object should be auto-updated.
    func shouldUpdateSpec(accessor metav1.Object) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top