Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for cautious (0.13 sec)

  1. pkg/kubelet/kubelet.go

    	// nodeStatusUpdateFrequency specifies how often kubelet computes node status. If node lease
    	// feature is not enabled, it is also the frequency that kubelet posts node status to master.
    	// In that case, be cautious when changing the constant, it must work with nodeMonitorGracePeriod
    	// in nodecontroller. There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than nodeStatusUpdateFrequency, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java

                    Element caution = document.createElement("caution");
                    td.appendChild(caution);
                    caution.appendChild(document.createTextNode("Deprecated"));
                }
                if (blockDoc.isIncubating()) {
                    Element caution = document.createElement("caution");
                    td.appendChild(caution);
                    caution.appendChild(document.createTextNode("Incubating"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodTableRenderer.java

                    Element caution = document.createElement("caution");
                    td.appendChild(caution);
                    caution.appendChild(document.createTextNode("Deprecated"));
                }
                if (methodDoc.isIncubating()) {
                    Element caution = document.createElement("caution");
                    td.appendChild(caution);
                    caution.appendChild(document.createTextNode("Incubating"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                    <td>
                        <caution>Deprecated</caution>
                        <para>method description</para>
                    </td>
                </tr>
                <tr>
                    <td>
                        <literal><link linkend="method2Id">incubating</link>(p)</literal>
                    </td>
                    <td>
                        <caution>Incubating</caution>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/play_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[play_plugin]]
    = Building Play applications
    
    [CAUTION]
    ====
    Play web application support was deprecated in Gradle 5 and replaced by an external Play plugin in Gradle 6.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 937 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
    
    //  See http://www.boost.org/libs/config for documentation
    
    #ifndef BOOST_VERSION_HPP
    #define BOOST_VERSION_HPP
    
    //
    //  Caution, this is the only boost header that is guaranteed
    //  to change with every boost release, including this header
    //  will cause a recompile every time a new boost version is
    //  released.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. releasenotes/notes/delta-xds-default.yaml

          This should be an internal implementation detail, but because this controls the core configuration protocol in Istio,
          an upgrade notice is present in an abundance of caution.
    
          The expected impacts of this change is improved performance of configuration distribution.
          This may result in reduced CPU and memory utilization in Istiod and proxies, as well as less network traffic between the two.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprog/badtraceback.go

    	"unsafe"
    )
    
    func init() {
    	register("BadTraceback", BadTraceback)
    }
    
    func BadTraceback() {
    	// Disable GC to prevent traceback at unexpected time.
    	debug.SetGCPercent(-1)
    	// Out of an abundance of caution, also make sure that there are
    	// no GCs actively in progress.
    	runtime.GC()
    
    	// Run badLR1 on its own stack to minimize the stack size and
    	// exercise the stack bounds logic in the hex dump.
    	go badLR1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 23:02:28 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/legacy/rule_source.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[rule_source]]
    = Implementing model rules in a plugin
    
    [CAUTION]
    ====
    Rule based configuration link:https://blog.gradle.org/state-and-future-of-the-gradle-software-model[will be deprecated].
    New plugins should not use this concept.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/preempt.go

    	// use scheduler preemption.
    	runtime.GOMAXPROCS(1)
    	// Disable GC so we have complete control of what we're testing.
    	debug.SetGCPercent(-1)
    	// Out of an abundance of caution, also make sure that there are
    	// no GCs actively in progress. The sweep phase of a GC cycle
    	// for instance tries to preempt Ps at the very beginning.
    	runtime.GC()
    
    	// Start a goroutine with no sync safe-points.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 17:46:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top