Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 641 for Capget (0.2 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

    import spock.lang.Specification
    import spock.lang.Subject
    
    class CaptureTestOutputTestResultProcessorTest extends Specification {
    
        TestResultProcessor target = Mock()
        TestOutputRedirector redirector = Mock()
        @Subject processor = new CaptureTestOutputTestResultProcessor(target, redirector)
    
        def "starts capturing output"() {
            def suite = new DefaultTestSuiteDescriptor("1", "Foo")
            def event = new TestStartEvent(1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. internal/config/config.go

    	defKVS = append(defKVS, KV{Key: Comment})
    
    	r := make([]SubsysInfo, 0, len(targets))
    	for _, target := range targets {
    		r = append(r, SubsysInfo{
    			SubSys:   subSys,
    			Target:   target,
    			Defaults: defKVS,
    			Config:   c.getTargetKVS(subSys, target, redactSecrets),
    			EnvMap:   c.getTargetEnvs(subSys, target, defKVS, redactSecrets),
    		})
    	}
    
    	return r, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

            }
        }
    
        /**
         * Locates the classpath required by the given target class. Traverses the dependency graph of classes used by the specified class and collects the result in the given collection.
         */
        private void find(Class<?> target, Collection<Class<?>> visited, Collection<URI> dest) {
            ClassLoader targetClassLoader = target.getClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/BootstrapSecurityManager.java

     */
    public class BootstrapSecurityManager extends SecurityManager {
        private boolean initialised;
        private final URLClassLoader target;
    
        public BootstrapSecurityManager() {
            this(null);
        }
    
        BootstrapSecurityManager(URLClassLoader target) {
            this.target = target;
        }
    
        @Override
        public void checkPermission(Permission permission) {
            synchronized (this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    			name: "use_os_pkg",
    			mklink: func(link, target string) error {
    				return os.Symlink(target, link)
    			},
    		},
    		dirLinkTest{
    			// Create link similar to what mklink does, by inserting \??\ at the front of absolute target.
    			name: "standard",
    			mklink: func(link, target string) error {
    				var t reparseData
    				t.addPrintName(target)
    				t.addSubstituteName(`\??\` + target)
    				return createSymbolicLink(link, &t, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    display: none;
    }
    </style>`
    
    const weblistPageScript = `<script type="text/javascript">
    function pprof_toggle_asm(e) {
      var target;
      if (!e) e = window.event;
      if (e.target) target = e.target;
      else if (e.srcElement) target = e.srcElement;
    
      if (target) {
        var asm = target.nextSibling;
        if (asm && asm.className == "asm") {
          asm.style.display = (asm.style.display == "block" ? "" : "block");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. docs/en/overrides/main.html

        </div>
      </div>
      <div id="announce-right" style="position: relative;">
        <div class="item">
          <a title="CryptAPI: Your easy to use, secure and privacy oriented payment gateway." style="display: block; position: relative;" href="https://cryptapi.io/" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

            }
            elements.put(target, candidates);
            if (replacedBy != null) {
                targetToSource.put(replacedBy, target);
                if (elements.containsKey(replacedBy)) {
                    //1) we've seen the replacement, register new conflict and return
                    return registerConflict(target, replacedBy);
                }
            }
    
            Collection<K> replacementSource = targetToSource.get(target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

      MLIRContext *context = module.getContext();
      ConversionTarget target(*context);
      target.addIllegalDialect<stablehlo::StablehloDialect>();
      target.addDynamicallyLegalDialect<func::FuncDialect>(
          [&](auto) { return is_func_legal; });
      target.addLegalDialect<TFL::TensorFlowLiteDialect>();
      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<vhlo::VhloDialect>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. cmd/metrics-v3-bucket-replication.go

    		"Number of DELETE tagging requests proxied to replication target",
    		bucketL)
    	bucketReplProxiedGetRequestsFailuresMD = NewCounterMD(bucketReplProxiedGetRequestsFailures,
    		"Number of failures in GET requests proxied to replication target",
    		bucketL)
    	bucketReplProxiedGetRequestsTotalMD = NewCounterMD(bucketReplProxiedGetRequestsTotal,
    		"Number of GET requests proxied to replication target",
    		bucketL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top