Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cautious (0.26 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// of time, it will start posting "NodeReady==ConditionUnknown". The amount of
    	// time before which Controller start evicting pods is controlled via flag
    	// 'pod-eviction-timeout'.
    	// Note: be cautious when changing the constant, it must work with
    	// nodeStatusUpdateFrequency in kubelet and renewInterval in NodeLease
    	// controller. The node health signal update frequency is the minimal of the
    	// two.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    				info.isLhs = true
    				check.untyped[x.expr] = info
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    				info.isLhs = true
    				check.untyped[x.expr] = info
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    // The traceback and context functions may be called from a signal
    // handler, and must therefore use only async-signal safe functions.
    // The symbolizer function may be called while the program is
    // crashing, and so must be cautious about using memory.  None of the
    // functions may call back into Go.
    //
    // The context function will be called with a single argument, a
    // pointer to a struct:
    //
    //	struct {
    //		Context uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	font-style: normal;
    	font-weight: bold;
    	margin: -.05em;
    	padding: 0 .5em;
    	text-transform: uppercase
    }
    
    .admonitionblock.caution td.icon {
    	background-color: var(--caution-color);
    	color: var(--caution-on-color)
    }
    
    .admonitionblock.caution td.icon i {
    	background-image: url(./img/octicons-16.svg#view-flame)
    }
    
    .admonitionblock.important td.icon {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    <2> Remaps the path of the extracting files into the destination directory by dropping the `libs` segment from the file path
    <3> Ignores the empty directories resulting from the remapping, see Caution note below
    
    [CAUTION]
    ====
    You can not change the destination path of empty directories with this technique.
    You can learn more in https://github.com/gradle/gradle/issues/2940[this issue].
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        /* Background colors for various structural elements */
        --body-background-color: #ffffff;
        --section-background-color: #f8f8f8;
        --detail-background-color: #ffffff;
        /* Colors for navigation bar and table captions */
        --navbar-background-color: #4D7A97;
        --navbar-text-color: #ffffff;
        /* Background color for subnavigation and various headers */
        --subnav-background-color: #dee3e9;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[native_software]]
    = Building native software
    
    
    CAUTION: The https://blog.gradle.org/state-and-future-of-the-gradle-software-model[software model] is being retired and the plugins mentioned in this chapter will eventually be deprecated and removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	// In STRICT mode, only endpoints that meets all of the routing preferences will be considered.
    	// This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
    	// This should be used with caution, as it can result in all traffic being dropped if there is no matching endpoints,
    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    // we don't have variable-sized frames, so we use a small number
    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	CMPQ	CX, $MAXSIZE;		\
    	JA	3(PC);			\
    	MOVQ	$NAME(SB), AX;		\
    	JMP	AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top