Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for asan (0.16 sec)

  1. src/runtime/trace.go

    	//   In this case, trace buffers could even be empty, but the trace
    	//   advancer will be waiting on the reader, so we have to make sure
    	//   to schedule the reader ASAP.
    	// - The reader has pending work to process for it's reader generation
    	//   (assuming readerGen is not lagging behind). Note that we also want
    	//   to be careful *not* to schedule the reader if there's no work to do.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an ds to create more replicas asap, not wait
    		// until the kubelet actually deletes the pod.
    		dsc.deletePod(logger, curPod)
    		return
    	}
    
    	curControllerRef := metav1.GetControllerOf(curPod)
    	oldControllerRef := metav1.GetControllerOf(oldPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	scannedStackSize uint64 // stack size of goroutines scanned by this P
    	scannedStacks    uint64 // number of goroutines scanned by this P
    
    	// preempt is set to indicate that this P should be enter the
    	// scheduler ASAP (regardless of what G is running on it).
    	preempt bool
    
    	// gcStopTime is the nanotime timestamp that this P last entered _Pgcstop.
    	gcStopTime int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_AsinOp : TF_Op<"Asin", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the trignometric inverse sine of x element-wise.";
    
      let description = [{
    The `tf.math.asin` operation returns the inverse of `tf.math.sin`, such that
    if `y = tf.math.sin(x)` then, `x = tf.math.asin(y)`.
    
    **Note**: The output of `tf.math.asin` will lie within the invertible range
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an job to create more pods asap, not wait
    		// until the kubelet actually deletes the pod.
    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	op_EFPC    uint32 = 0xB38C // FORMAT_RRE        EXTRACT FPC
    	op_EPAIR   uint32 = 0xB99A // FORMAT_RRE        EXTRACT PRIMARY ASN AND INSTANCE
    	op_EPAR    uint32 = 0xB226 // FORMAT_RRE        EXTRACT PRIMARY ASN
    	op_EPSW    uint32 = 0xB98D // FORMAT_RRE        EXTRACT PSW
    	op_EREG    uint32 = 0xB249 // FORMAT_RRE        EXTRACT STACKED REGISTERS (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    // Function is executed only during Kubelet start which improves latency to ready node by updating
    // kubelet state, runtime status and node statuses ASAP.
    func (kl *Kubelet) fastStatusUpdateOnce() {
    	ctx := context.Background()
    	start := kl.clock.Now()
    	stopCh := make(chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/opGen.go

    		argLen: 2,
    		reg:    regInfo{},
    	},
    	{
    		name:           "LAN",
    		argLen:         3,
    		clobberFlags:   true,
    		hasSideEffects: true,
    		asm:            s390x.ALAN,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 4295023614}, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14 SP SB
    				{1, 56319},      // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14 SP
    			},
    		},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. CREDITS

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright 2022 Alan Shreve (@inconshreveable)
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top