Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 273 for _ecounters (0.23 sec)

  1. api/openapi-spec/swagger.json

            },
            "lastKnownGood": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeConfigSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  2. src/internal/coverage/cmerge/merge.go

    // into 'dst' according to the correct counter mode.
    func (m *Merger) MergeCounters(dst, src []uint32) (error, bool) {
    	if len(src) != len(dst) {
    		return fmt.Errorf("merging counters: len(dst)=%d len(src)=%d", len(dst), len(src)), false
    	}
    	if m.cmode == coverage.CtrModeSet {
    		for i := 0; i < len(src); i++ {
    			if src[i] != 0 {
    				dst[i] = 1
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/coerce.go

    // throwing away fields which lead to errors.
    // If opts.ReturnedUnknownFields is true, it will UnmarshalStrict instead, returning the paths of any unknown fields
    // it encounters (i.e. paths returned as strict errs from UnmarshalStrict)
    func GetObjectMetaWithOptions(obj map[string]interface{}, opts ObjectMetaOptions) (*metav1.ObjectMeta, bool, []string, error) {
    	metadata, found := obj["metadata"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    // addCounters takes a list of statements and adds counters to the beginning of
    // each basic block at the top level of that list. For instance, given
    //
    //	S1
    //	if cond {
    //		S2
    //	}
    //	S3
    //
    // counters will be added before S1 and before S3. The block containing S2
    // will be visited in a separate call.
    // TODO: Nested simple blocks get unnecessary (but correct) counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    		t.Fatal(err)
    	}
    	transformer := newGCMTransformerWithUniqueKeyUnsafeTest(t, block, nil)
    
    	ctx := context.Background()
    	dataCtx := value.DefaultContext("authenticated_data")
    
    	const count = 1_000
    
    	counters := make([]uint64, count)
    
    	// run a bunch of go routines to make sure we are go routine safe
    	// on both the nonce generation and the actual encryption/decryption
    	var wg sync.WaitGroup
    	for i := 0; i < count; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

    import java.io.PrintStream;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * The entry point for a daemon process.
     *
     * If the daemon hits the specified idle timeout the process will exit with 0. If the daemon encounters an internal error or is explicitly stopped (which can be via receiving a stop command, or
     * unexpected client disconnection) the process will exit with 1.
     */
    public class DaemonMain extends EntryPoint {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    	echo
    	echo '/*'
    	indirect="includes_$(uname)"
    	echo "${!indirect} $includes"
    	echo '*/'
    	echo 'import "C"'
    	echo
    	echo 'const ('
    
    	# The gcc command line prints all the #defines
    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (1)
  8. internal/kms/kms.go

    	// latency and update its and all subsequent counters.
    	bucket := slices.IndexFunc(k.latencyBuckets, func(b time.Duration) bool { return latency < b })
    	if bucket < 0 {
    		bucket = len(k.latencyBuckets) - 1
    	}
    	for i := bucket; i < len(k.latency); i++ {
    		k.latency[i].Add(1)
    	}
    
    	// Next, update the request counters
    	if err == nil {
    		k.reqOK.Add(1)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/zsyscall_windows.go

    	return
    }
    
    func GetProcessMemoryInfo(handle syscall.Handle, memCounters *PROCESS_MEMORY_COUNTERS, cb uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procGetProcessMemoryInfo.Addr(), 3, uintptr(handle), uintptr(unsafe.Pointer(memCounters)), uintptr(cb))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	}
    	defer uploader.Close()
    	return uploader.Run()
    }
    
    // uploader encapsulates a single upload operation, carrying parameters and
    // shared state.
    type uploader struct {
    	// config is used to select counters to upload.
    	config        *telemetry.UploadConfig //
    	configVersion string                  // version of the config
    	dir           telemetry.Dir           // the telemetry dir to process
    
    	uploadServerURL string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top