Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for dialing (0.7 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         */
        ResolutionStrategy deactivateDependencyLocking();
    
    
        /**
         * Deactivates dependency verification for this configuration.
         * You should always be careful when disabling verification, and in particular avoid
         * disabling it for verification of plugins, because a plugin could use this to disable
         * verification itself.
         *
         * @since 6.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    - artifact selection via the link:{javadocPath}/org/gradle/api/artifacts/ResolutionStrategy.html#dependencySubstitution-org.gradle.api.Action-[ResolutionStrategy API]
    
    [[sec:disabling_resolution_transitive_dependencies]]
    == Disabling transitive resolution
    
    By default Gradle resolves all transitive dependencies specified by the dependency metadata.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that running a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that fuzzing a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test -fuzz=Fuzz -fuzztime=1x noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        }
    
        // -----------------------------------------------------------------------------------------------
        // Tests which exercise the lifecycle executor when it is dealing with individual goals.
        // -----------------------------------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. LICENSE

          means any form of electronic, verbal, or written communication sent
          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
          and issue tracking systems that are managed by, or on behalf of, the
          Licensor for the purpose of discussing and improving the Work, but
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

    function install-containerd-ubuntu {
      # bailout if we are not on ubuntu
      if [[ -z "$(command -v lsb_release)" || $(lsb_release -si) != "Ubuntu" ]]; then
        echo "Unable to automatically install containerd in non-ubuntu image. Bailing out..."
        exit 2
      fi
    
      # Install dependencies, some of these are already installed in the image but
      # that's fine since they won't re-install and we can reuse the code below
      # for another image someday.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. pkg/wasm/convert.go

    						return
    					}
    					// Use NOOP filter because the download failed.
    					newExtensionConfig, err = createHTTPAllowAllFilter(extConfig.GetName())
    					if err != nil {
    						// If the fallback is failing, send the Nack regardless of fail_open.
    						err = fmt.Errorf("failed to create allow-all filter as a fallback of %s Wasm Module: %w", extConfig.GetName(), err)
    						convertErrs[i] = err
    						return
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * 
     *    Name               Type         Status
     * ---------------------------------------------
     * JMORRIS2        <00>  UNIQUE      Registered
     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
     * </blockquote></pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

          path = getenv("MLIR_CRASH_REPRODUCER_DIRECTORY");
        else if (getenv("TEST_UNDECLARED_OUTPUTS_DIR"))
          path = "sponge";
      }
      if (path.empty()) {
        LOG_FIRST_N(INFO, 1) << "disabling MLIR crash reproducer, set env var "
                                "`MLIR_CRASH_REPRODUCER_DIRECTORY` to enable.";
        return;
      }
    
      // Output dirs "sponge" (case-insensitive) have a special meaning: Dump into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          }
        };
      }
    
      /**
       * Shuts down the given executor service gradually, first disabling new submissions and later, if
       * necessary, cancelling remaining tasks.
       *
       * <p>The method takes the following steps:
       *
       * <ol>
       *   <li>calls {@link ExecutorService#shutdown()}, disabling acceptance of new submitted tasks.
       *   <li>awaits executor service termination for half of the specified timeout.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top