Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 92 for inspectors (0.14 sec)

  1. 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)
  2. docs/en/docs/tutorial/body.md

        It improves editor support for Pydantic models, with:
    
        * auto-completion
        * type checks
        * refactoring
        * searching
        * inspections
    
    ## Use the model
    
    Inside of the function, you can access all the attributes of the model object directly:
    
    === "Python 3.10+"
    
        ```Python hl_lines="19"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/crypto/x509/pem_decrypt.go

    // DecryptPEMBlock takes a PEM block encrypted according to RFC 1423 and the
    // password used to encrypt it and returns a slice of decrypted DER encoded
    // bytes. It inspects the DEK-Info header to determine the algorithm used for
    // decryption. If no DEK-Info header is present, an error is returned. If an
    // incorrect password is detected an [IncorrectPasswordError] is returned. Because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    	// library, start/limit/offset are the addresses where it is mapped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    type MappingSources map[string][]struct {
    	Source string // URL of the source the mapping was collected from
    	Start  uint64 // delta applied to addresses from this source (to represent Merge adjustments)
    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    	// library, start/limit/offset are the addresses where it is mapped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. istioctl/pkg/precheck/precheck.go

    	var fromCompatibilityVersion string
    	// cmd represents the upgradeCheck command
    	cmd := &cobra.Command{
    		Use:   "precheck",
    		Short: "Check whether Istio can safely be installed or upgraded",
    		Long:  `precheck inspects a Kubernetes cluster for Istio install and upgrade requirements.`,
    		Example: `  # Verify that Istio can be installed or upgraded
      istioctl x precheck
    
      # Check only a single namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top