Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for inspectors (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/HACKING.md

    While running on the system stack, the current user stack is not used
    for execution.
    
    nosplit functions
    -----------------
    
    Most functions start with a prologue that inspects the stack pointer
    and the current G's stack bound and calls `morestack` if the stack
    needs to grow.
    
    Functions can be marked `//go:nosplit` (or `NOSPLIT` in assembly) to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/runtime/mfinal.go

    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    // For example, consider a finalizer that inspects a mutable field in x
    // that is modified from time to time in the main program before x
    // becomes unreachable and the finalizer is invoked.
    // The modifications in the main program and the inspection in the finalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    		return false
    	}
    	fn := n.Fun.(*Name).Sym()
    	return (fn.Name == "FuncPCABI0" || fn.Name == "FuncPCABIInternal") &&
    		fn.Pkg.Path == "internal/abi"
    }
    
    // IsIfaceOfFunc inspects whether n is an interface conversion from a direct
    // reference of a func. If so, it returns referenced Func; otherwise nil.
    //
    // This is only usable before walk.walkConvertInterface, which converts to an
    // OMAKEFACE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/net/http/response_test.go

    				"Www-Authenticate": {`Basic realm=""`},
    			},
    			Close:         true,
    			ContentLength: -1,
    		},
    		"Your Authentication failed.\r\n",
    	},
    }
    
    // tests successful calls to ReadResponse, and inspects the returned Response.
    // For error cases, see TestReadResponseErrors below.
    func TestReadResponse(t *testing.T) {
    	for i, tt := range respTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject.go

    	}
    	container.Env = envVars
    }
    
    // GetProxyIDs returns the UID and GID to be used in the RunAsUser and RunAsGroup fields in the template
    // Inspects the namespace metadata for hints and fallbacks to the usual value of 1337.
    func GetProxyIDs(namespace *corev1.Namespace) (uid int64, gid int64) {
    	uid = constants.DefaultProxyUIDInt
    	gid = constants.DefaultProxyUIDInt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
Back to top