Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for fnest (0.08 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

        }
    
        @Override
        public void setDebugLoggingEnabled(boolean debugLoggingEnabled) {
            java.util.logging.Logger.getLogger(NativeLogger.class.getName()).setLevel(debugLoggingEnabled
                ? Level.FINEST
                : Level.INFO
            );
            fileEventFunctions.invalidateLogLevelCache();
        }
    
        @Override
        public void close() throws IOException {
            stopping = true;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

            """
    
            then:
            succeeds "help"
        }
    
        @Issue("http://discuss.gradle.org/t/concurrentmodification-exception-on-java-8-for-plugins-withid-with-gradle-2-4/8928")
        def "can nest detection"() {
            // Actual plugins in use here are insignificant
            when:
            file("buildSrc/src/main/groovy/PluginA.groovy") << """
                class PluginA implements $Plugin.name {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            when:
            run()
    
            then:
            result.assertTaskExecuted(":buildSrc:other:build")
            result.assertTaskExecuted(":buildSrc:otherBuild")
        }
    
        def "nested build can nest more builds"() {
            given:
            buildFile << """
                task otherBuild(type:GradleBuild) {
                    dir = 'other'
                    tasks = ['otherBuild']
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      FrozenRewritePatternSet patterns;
    };
    
    }  // namespace
    
    void CreateTFStandardPipeline(OpPassManager &pm,
                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

                        instant.finished2
                    }
                }
            }
    
            then:
            noExceptionThrown()
        }
    
        def "multiple threads can nest calls with uncontrolled access to all projects"() {
            given:
            def build = build("p1", "p2")
            createRootProject()
            def project1 = project("p1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

          System.setProperty("javax.net.debug", "")
          logger =
            Logger.getLogger("javax.net.ssl")
              .apply {
                level = Level.FINEST
                useParentHandlers = false
              }
        }
      }
    }
    
    @SuppressSignatureCheck
    class WiresharkExample(tlsVersions: List<TlsVersion>, private val launch: Launch? = null) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

        }
      }
    }
    
    std::vector<SignatureDefParam> SignatureDefParamsFromNamedParamMap(
        const NamedParamMap& params) {
      // The underlying functiondef associated with the SignatureDef has
      // nest.flattened inputs and outputs, which are sorted by string key.
      std::vector<SignatureDefParam> result;
      result.reserve(params.size());
      for (const auto& named_param : params) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. src/runtime/trace/annotation.go

    	fn()
    }
    
    // StartRegion starts a region and returns it.
    // The returned Region's [Region.End] method must be called
    // from the same goroutine where the region was started.
    // Within each goroutine, regions must nest. That is, regions started
    // after this region must be ended before this region can be ended.
    // Recommended usage is
    //
    //	defer trace.StartRegion(ctx, "myTracedRegion").End()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/settings.md

    Dann könnten Sie dieses Python-Programm aufrufen:
    
    <div class="termy">
    
    ```console
    // Hier legen wir die Umgebungsvariable noch nicht fest
    $ python main.py
    
    // Da wir die Umgebungsvariable nicht festgelegt haben, erhalten wir den Standardwert
    
    Hello World from Python
    
    // Aber wenn wir zuerst eine Umgebungsvariable erstellen
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

            assert loadBuildBuildOperation.id == evaluateSettingsBuildOperation.parentId
    
            projectsIdentifiedEvents.empty
        }
    
        def "operations are fired for complex nest of builds"() {
            settingsFile << """
                rootProject.name = "root-changed"
                includeBuild 'nested'
            """
            buildFile << """
                apply plugin:'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top