Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 945 for prior (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeWorkGraphPreparer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    /**
     * Performs any initial setup that needs to happen to a build tree work graph prior to scheduling the requested tasks.
     */
    public interface BuildTreeWorkGraphPreparer {
        void prepareToScheduleTasks(BuildTreeWorkGraph.Builder workGraph);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 05:15:11 UTC 2022
    - 903 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_test_cycle.txt

    # https://golang.org/issue/45863: a typo in a test package leading to an
    # import cycle should be diagnosed, instead of causing an infinite loop.
    # The failure mode of this test prior to the fix was a timeout or OOM crash.
    
    go list -e -test -deps ./datastore/sql
    
    -- go.mod --
    module golang.org/issue45863
    
    go 1.17
    -- datastore/datastore_health.go --
    package datastore
    
    import (
    	"golang.org/issue45863/datastore"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 24 02:25:23 UTC 2021
    - 582 bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       * `INADEQUATE_SECURITY`.
       */
      HTTP_2("h2"),
    
      /**
       * Cleartext HTTP/2 with no "upgrade" round trip. This option requires the client to have prior
       * knowledge that the server supports cleartext HTTP/2.
       *
       * See also [Starting HTTP/2 with Prior Knowledge][rfc_7540_34].
       *
       * [rfc_7540_34]: https://tools.ietf.org/html/rfc7540.section-3.4
       */
      H2_PRIOR_KNOWLEDGE("h2_prior_knowledge"),
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/replicate_invariant_op_hoisting.cc

      if (!read_var_op) return;
    
      // TODO(lyandy): Check if resource (first replica or replicate block arg)
      // shape has not changed in replicate prior to read. Currently after both
      // ResourceOpLiftingPass and TPURewritePass, there should not be any updates
      // to resources prior to their respective ReadVariableOp.
      if (auto block_arg =
              mlir::dyn_cast<BlockArgument>(read_var_op.getResource())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/InitialProperties.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.configuration;
    
    import java.util.Map;
    
    /**
     * An immutable view of the properties that are available prior to calculating the build layout. That is, the properties that are
     * defined on the command-line and in the system properties of the current JVM.
     */
    public interface InitialProperties {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         * A worker lease is also granted to the thread. The thread can release this if it needs to, but should reacquire
         * the lease prior to doing any meaningful work.
         *
         * This method is reentrant so that a thread can call this method from the given action.
         *
         * This method blocks until a worker lease is available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/net/tcpconn_keepalive_conf_windows_test.go

    	syscall_TCP_KEEPINTVL = windows.TCP_KEEPINTVL
    )
    
    type fdType = syscall.Handle
    
    func maybeSkipKeepAliveTest(t *testing.T) {
    	// TODO(panjf2000): Unlike Unix-like OS's, old Windows (prior to Windows 10, version 1709)
    	// 	doesn't provide any ways to retrieve the current TCP keep-alive settings, therefore
    	// 	we're not able to run the test suite similar to Unix-like OS's on Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 987 bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/INSTALL.md

    (or you can also run `go mod tidy` to do this directly).
    
    ## Troubleshooting
    
    ### Go versions prior to 1.16
    
    If you get a message like 
    `module k8s.io/client-go@latest found (v1.5.2), but does not contain package k8s.io/client-go/...`,
    you are likely using a go version prior to 1.16 and must explicitly specify the k8s.io/client-go version you want.
    For example:
    ```sh
    go get k8s.io/client-go@v0.20.4
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
            // At the same time, all the cases test the same functionality of the ExecHandle implementation.
            // 'JavaExec task'           | 'run'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Serialization.java

        populateMap(map, stream, size);
      }
    
      /**
       * Populates a map by reading an input stream, as part of deserialization. See {@link #writeMap}
       * for the data format. The size is determined by a prior call to {@link #readCount}.
       */
      static <K extends @Nullable Object, V extends @Nullable Object> void populateMap(
          Map<K, V> map, ObjectInputStream stream, int size)
          throws IOException, ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top