Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 926 for effects (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    	"k8s.io/component-base/tracing"
    	"k8s.io/klog/v2/ktesting"
    	netutils "k8s.io/utils/net"
    )
    
    func TestAuthorizeClientBearerTokenNoops(t *testing.T) {
    	// All of these should do nothing (not panic, no side-effects)
    	cfgGens := []func() *rest.Config{
    		func() *rest.Config { return nil },
    		func() *rest.Config { return &rest.Config{} },
    		func() *rest.Config { return &rest.Config{BearerToken: "mu"} },
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    [[sub:resolving-unsafe-configuration-resolution-errors]]
    === Unsafe Configuration Resolution Errors
    
    Resolving a configuration can have side effects on Gradle's project model.
    As a result, Gradle must manage access to each project's configurations.
    There are a number of ways a configuration might be resolved unsafely.
    For example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pilot/pkg/model/config.go

    	// Create adds a new configuration object to the store. If an object with the
    	// same name and namespace for the type already exists, the operation fails
    	// with no side effects.
    	Create(config config.Config) (revision string, err error)
    
    	// Update modifies an existing configuration object in the store.  Update
    	// requires that the object has been created.  Resource version prevents
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/walk.go

    func appendWalkStmt(init *ir.Nodes, stmt ir.Node) {
    	op := stmt.Op()
    	n := typecheck.Stmt(stmt)
    	if op == ir.OAS || op == ir.OAS2 {
    		// If the assignment has side effects, walkExpr will append them
    		// directly to init for us, while walkStmt will wrap it in an OBLOCK.
    		// We need to append them directly.
    		// TODO(rsc): Clean this up.
    		n = walkExpr(n, init)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/c/ops.h

    // The op built by this builder is stateful if its behavior depends on some
    // state beyond its input tensors (e.g. variable reading op) or if it has a
    // side-effect (e.g. printing or asserting ops). Equivalently, stateless ops
    // must always produce the same output for the same input and have no
    // side-effects.
    //
    // By default Ops may be moved between devices. Stateful ops should either not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/hash/maphash/smhasher_test.go

    	// input bit i affects output bit j.
    	grid := make([][hashSize]int, n)
    
    	for z := 0; z < REP; z++ {
    		// pick a random key, hash it
    		k.random(r)
    		h := k.hash()
    
    		// flip each bit, hash & compare the results
    		for i := 0; i < n; i++ {
    			k.flipBit(i)
    			d := h ^ k.hash()
    			k.flipBit(i)
    
    			// record the effects of that bit flip
    			g := &grid[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/os/file_windows.go

    	}
    	attrs := uint32(syscall.FILE_FLAG_BACKUP_SEMANTICS)
    	// Use FILE_FLAG_OPEN_REPARSE_POINT, otherwise CreateFile will follow symlink.
    	// See https://docs.microsoft.com/en-us/windows/desktop/FileIO/symbolic-link-effects-on-file-systems-functions#createfile-and-createfiletransacted
    	attrs |= syscall.FILE_FLAG_OPEN_REPARSE_POINT
    	h, err := syscall.CreateFile(p, 0, 0, nil, syscall.OPEN_EXISTING, attrs, 0)
    	if err != nil {
    		return 0, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    In some cases even well-trusted tools can produce non-repeatable outputs, and lead to cascading effects.
    One example is Oracle's Java compiler, which, https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8067422[due to a bug], was producing different bytecode depending on the order source files to be compiled were presented to it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. src/go/types/instantiate.go

    		// If the signature doesn't use its type parameters, subst
    		// will not make a copy. In that case, make a copy now (so
    		// we can set tparams to nil w/o causing side-effects).
    		if sig == orig {
    			copy := *sig
    			sig = &copy
    		}
    		// After instantiating a generic signature, it is not generic
    		// anymore; we need to set tparams to nil.
    		sig.tparams = nil
    		res = sig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/doc.go

    	CRnGT represents CR bit 1 of CR field n. (0-7)
    	CRnEQ represents CR bit 2 of CR field n. (0-7)
    	CRnSO represents CR bit 3 of CR field n. (0-7)
    
    # GOPPC64 >= power10 and its effects on Go asm
    
    When GOPPC64=power10 is used to compile a Go program for ppc64le/linux, MOV*, FMOV*, and ADD
    opcodes which would require 2 or more machine instructions to emulate a 32 bit constant, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top