Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for dialing (0.49 sec)

  1. cmd/kube-proxy/app/server_test.go

    			metricsBindAddress: "[fd00:2::5]:23456",
    		},
    		{
    			// Test for unknown field within config.
    			// For v1alpha1 a lenient path is implemented and will throw a
    			// strict decoding warning instead of failing to load
    			name:               "unknown field",
    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. src/runtime/debug/garbage.go

    // progress.
    //
    // The memory limit is always respected by the Go runtime, so to
    // effectively disable this behavior, set the limit very high.
    // [math.MaxInt64] is the canonical value for disabling the limit,
    // but values much greater than the available memory on the underlying
    // system work just as well.
    //
    // See https://go.dev/doc/gc-guide for a detailed guide explaining
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. docs/bucket/replication/setup_ilm_expiry_replication.sh

    	echo "BUG: Expiration days not changed on 'sitea'"
    	exit 1
    fi
    if [ $count2 -ne 100 ]; then
    	echo "BUG: Modified ILM expiry rule not replicated to 'siteb'"
    	exit 1
    fi
    
    ## Check disabling of ILM expiry rules replication
    ./mc admin replicate update sitea --disable-ilm-expiry-replication
    flag=$(./mc admin replicate info sitea --json | jq '.sites[] | select (.name=="sitea") | ."replicate-ilm-expiry"')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. internal/config/identity/openid/openid.go

    		// In the past, when only one openID provider was allowed, there
    		// was no `enable` parameter - the configuration is turned off
    		// by clearing the values. With multiple providers, we support
    		// individually enabling/disabling provider configurations. If
    		// the enable parameter's value is non-empty, we use that
    		// setting, otherwise we treat it as enabled if some important
    		// parameters are non-empty.
    		var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * {@link #doLast(groovy.lang.Closure)}.</p>
     *
     * <p>There are 2 special exceptions which a task action can throw to abort execution and continue without failing the
     * build. A task action can abort execution of the action and continue to the next action of the task by throwing a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

     * possible over their JDK equivalents whenever you are expecting to handle only IP address string
     * literals -- there is no blocking DNS penalty for a malformed string.
     *
     * <p>When dealing with {@link Inet4Address} and {@link Inet6Address} objects as byte arrays (vis.
     * {@code InetAddress.getAddress()}) they are 4 and 16 bytes in length, respectively, and represent
     * the address in network byte order.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sub:disable_auto_provision]]
    === Disabling auto provisioning
    
    In order to disable auto-provisioning, you can use the `org.gradle.java.installations.auto-download` Gradle property:
    
    * Either start gradle using `-Porg.gradle.java.installations.auto-download=false`
    * Or put `org.gradle.java.installations.auto-download=false` into a `gradle.properties` file.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      }
    
      if (VLOG_IS_ON(2) || DEBUG_DATA_DUMPER()->ShouldDump(
                               module_name.str(), kDebugGroupBridgePhase2)) {
        // Print the whole module after each pass which requires disabling
        // multi-threading as well.
        module_op.getContext()->disableMultithreading();
        tf2xla.enableIRPrinting(
            std::make_unique<::tensorflow::DataDumperLoggerConfig>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. src/text/template/funcs.go

    		return v.IsNil()
    	}
    	return false
    }
    
    // canCompare reports whether v1 and v2 are both the same kind, or one is nil.
    // Called only when dealing with nillable types, or there's about to be an error.
    func canCompare(v1, v2 reflect.Value) bool {
    	k1 := v1.Kind()
    	k2 := v2.Kind()
    	if k1 == k2 {
    		return true
    	}
    	// We know the type can be compared to nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            when:
            succeeds('customTask')
    
            then:
            result.assertTasksExecutedInOrder(':climbTask', ':customTask')
        }
    
        def "a build failure occurs when depending on a rule task with failing configuration"() {
            given:
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top