Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 377 for incremented (0.18 sec)

  1. src/cmd/go/internal/toolchain/select.go

    	// to the child to confirm that it provides the expected toolchain version.
    	targetEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_VERSION"
    
    	// countEnv is a special environment variable
    	// that is incremented during each toolchain switch, to detect loops.
    	// It is cleared before invoking programs in 'go run', 'go test', 'go generate', and 'go tool'
    	// by invoking them in an environment filtered with FilterEnv,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    //
    // Calls to [Scanner.Scan] will invoke the error handler err if they encounter a
    // syntax error and err is not nil. Also, for each error encountered,
    // the [Scanner] field ErrorCount is incremented by one. The mode parameter
    // determines how comments are handled.
    //
    // Note that Init may call err if there is an error in the first character
    // of the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control.go

    // getStatefulSetRevisions returns the current and update ControllerRevisions for set. It also
    // returns a collision count that records the number of name collisions set saw when creating
    // new ControllerRevisions. This count is incremented on every name collision and is used in
    // building the ControllerRevision names for name collision avoidance. This method may create
    // a new revision, or modify the Revision of an existing revision if an update to set is detected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    // encrypted values under the same key, but will prevent an attacker from using an
    // encrypted value from a different key. A stronger authenticated data segment would
    // include the etcd3 Version field (which is incremented on each write to a key and
    // reset when the key is deleted), but an attacker with write access to etcd can
    // force deletion and recreation of keys to weaken that angle.
    type authenticatedDataString string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    	switch {
    	case target.Type == obj.TYPE_BRANCH:
    		// JMP 4(PC)
    		*targetAddr = obj.Addr{
    			Type:   obj.TYPE_BRANCH,
    			Offset: p.pc + 1 + target.Offset, // +1 because p.pc is incremented in append, below.
    		}
    	case target.Type == obj.TYPE_REG:
    		// JMP R1
    		*targetAddr = *target
    	case target.Type == obj.TYPE_MEM && (target.Name == obj.NAME_EXTERN || target.Name == obj.NAME_STATIC):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/wasm/wasmobj.go

    	}
    
    	// Introduce resume points for CALL instructions
    	// and collect other explicit resume points.
    	numResumePoints := 0
    	explicitBlockDepth := 0
    	pc := int64(0) // pc is only incremented when necessary, this avoids bloat of the BrTable instruction
    	var tableIdxs []uint64
    	tablePC := int64(0)
    	base := ctxt.PosTable.Pos(s.Func().Text.Pos).Base()
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint32(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_32 above, with one line added to maintain cx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// zero because the world is stopped and there are no available Ps for syscall-exited
    	// goroutines to run on.
    	//
    	// Because we set gen before checking this, and because exitingSyscall is always incremented
    	// *before* traceAcquire (which checks gen), we can be certain that when exitingSyscall is zero
    	// that any goroutine that goes to exit a syscall from then on *must* observe the new gen as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/order.go

    	counter.Linksym().Type = objabi.SLIBFUZZER_8BIT_COUNTER
    
    	// We guarantee that the counter never becomes zero again once it has been
    	// incremented once. This implementation follows the NeverZero optimization
    	// presented by the paper:
    	// "AFL++: Combining Incremental Steps of Fuzzing Research"
    	// The NeverZero policy avoids the overflow to 0 by setting the counter to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds.go

    	// prevent memory leaks.
    	if event == model.EventDelete {
    		inboundServiceDeletes.Increment()
    		s.Env.EndpointIndex.DeleteServiceShard(shard, hostname, namespace, false)
    	} else {
    		inboundServiceUpdates.Increment()
    	}
    }
    
    // EDSUpdate computes destination address membership across all clusters and networks.
    // This is the main method implementing EDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top