Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for isolating (0.25 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //
            //  - TensorArray ops operating on the same TensorArray instance.
            //  - Stack ops operating on the same Stack instance.
            //
            // To work around this we avoid isolating these specific ops.  Because
            // of this concession it is unsound to auto-cluster them because then
            // we'd create clusters we could not compile (because we can't constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                return AnnotationProcessorResult.Type.AGGREGATING;
            }
            if (type.equals(InternalAnnotationProcessorResult.TYPE_ISOLATING)) {
                return AnnotationProcessorResult.Type.ISOLATING;
            }
            return AnnotationProcessorResult.Type.UNKNOWN;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            1 * parentService.close()
            0 * childService.close()
        }
    
        /*
         * We isolate services in child registries, so we don't leak memory. This test makes
         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    						},
    					},
    				},
    			},
    			expectedNumFilterCalled: []int32{4, 4, 4},
    		},
    		{
    			name: "preemption looks past numCandidates until a non-PDB violating node is found",
    			args: &config.DefaultPreemptionArgs{MinCandidateNodesPercentage: 40, MinCandidateNodesAbsolute: 2},
    			registerPlugins: []tf.RegisterPluginFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    To work around this, you can use the <<worker_api.adoc#tasks_parallel_worker, Worker API>> with classloader or process isolation to encapsulate the library code.
    The bytecode of the worker's classpath is not modified, so the self-checks should pass.
    When process isolation is used, the worker action is executed in a separate worker process that doesn't have the Gradle Java agent installed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - ScalaDoc
    - AntlrTask
    - JVM compiler daemons
    - tasks executed using process isolation via the link:worker_api.html[Worker API]
    
    New warnings and errors may appear in any tools, extensions, or plugins that perform deep reflection into JDK internals with the worker API.
    
    These errors can be resolved by updating the violating code or dependency.
    Updates may include:
    
    - code-quality tools
    - annotation processors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"restricted": map[string]interface{}{
    								"minProperties": 1,
    								"maxProperties": 1,
    							},
    						},
    					}},
    				applyPatchOperation{
    					"ratchet violating object 'restricted' around changes to unrelated field",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"restricted": map[string]interface{}{
    							"key1": "hi",
    							"key2": "there",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    		{`<combo>?foo`, `<a href="%3Ccombo%3E%3Ffoo">&lt;combo&gt;?foo</a>`},
    		{`foo:bar`, `<a href="./foo:bar">foo:bar</a>`},
    	}
    
    	// We put each test file in its own directory in the fakeFS so we can look at it in isolation.
    	fs := make(fakeFS)
    	for i, test := range tests {
    		testFile := &fakeFileInfo{basename: test.name}
    		fs[fmt.Sprintf("/%d", i)] = &fakeFileInfo{
    			dir:     true,
    			modtime: time.Unix(1000000000, 0).UTC(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      StringPiece GetRelativePath(StringPiece absolute_path) {
        return tensorflow::str_util::StripPrefix(absolute_path, root_dir_);
      }
    
      // Initializes the randomness used to ensure test isolation.
      static void InitializeTestRNG() {
        std::random_device rd;
        std::mt19937 gen(rd());
        std::uniform_int_distribution<> distribution;
        rng_val_ = distribution(gen);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    				recursionFunc++
    			}
    		}
    		if recursionFunc > 1 {
    			t.Fatalf("want at most one recursionCaller or recursionCallee in one Location, got a violating Location (index: %d):\n%v", i, p)
    		}
    	}
    }
    
    func recursionCaller(x int) int {
    	y := recursionCallee(3, x)
    	return y
    }
    
    func recursionCallee(n, x int) int {
    	if n == 0 {
    		return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top