Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for inflated (0.34 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            DefaultProject                        | Project                        | "project"
            DefaultIsolatedProject                | IsolatedProject                | "project.isolated"
            DefaultTaskContainer                  | TaskContainer                  | "project.tasks"
            DefaultTask                           | Task                           | "project.tasks.other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun getProject(): ProjectInternal {
                return this
            }
    
            override fun getIsolated(): IsolatedProject {
                return delegate.isolated
            }
    
            override fun task(name: String): Task {
                onAccess("task")
                return delegate.task(name)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                        analyzers.add(analyzer);
                        analyzer.killAll();
                    } catch (Exception e) {
                        getLogger().warn("Problem killing isolated daemons of Gradle version " + version + " in " + dir, e);
                    }
                }
            }
    
            if (checkDaemonCrash) {
                analyzers.forEach(DaemonLogsAnalyzer::assertNoCrashedDaemon);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	registerBucketLevelFunc(bucketRouter, api, apiFunctions...)
    }
    
    // Takes in Erasure object layer, and the list of API end points to be tested/required, registers the API end points and returns the HTTP handler.
    // Need isolated registration of API end points while writing unit tests for end points.
    // All the API end points are registered only for the default case.
    func initTestAPIEndPoints(objLayer ObjectLayer, apiFunctions []string) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // traversal with a worklist and reconsider only the nodes for which an
      // operand type was inferred. This would need to be careful if working on a
      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
        changed = false;
        LLVM_DEBUG(llvm::dbgs()
                   << "Shape inference, iteration " << iteration << "\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * Refactor calling each a path operation's handler function in an isolated function, to simplify profiling. PR [#1027](https://github.com/tiangolo/fastapi/pull/1027) by [@sm-Fifteen](https://github.com/sm-Fifteen).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top