Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 276 for happens (0.28 sec)

  1. pilot/pkg/networking/core/route/route.go

    		operations := TranslateHeadersOperations(dst.Headers)
    		out.RequestHeadersToAdd = append(out.RequestHeadersToAdd, operations.RequestHeadersToAdd...)
    		out.RequestHeadersToRemove = append(out.RequestHeadersToRemove, operations.RequestHeadersToRemove...)
    		out.ResponseHeadersToAdd = append(out.ResponseHeadersToAdd, operations.ResponseHeadersToAdd...)
    		out.ResponseHeadersToRemove = append(out.ResponseHeadersToRemove, operations.ResponseHeadersToRemove...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// interface that is shared by all possible plugins.
    ///
    /// The API number increases whenever we break API compatibility while still
    /// maintaining ABI compatibility. This happens only in the following cases:
    ///   1. A new method is added _at the end_ of the function table.
    ///   2. Preconditions or postconditions for one operation in these function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	MOVQ	g_m(BX), BX
    
    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    // number of bytes copied. The error is EOF only if no bytes were
    // read. On return, n == len(buf) if and only if err == nil. n == 0
    // for io.EOF.
    //
    // If an EOF happens after reading some but not all the bytes,
    // ReadFile returns ErrUnexpectedEOF.
    //
    // If the BitrotVerifier is not nil or not verified ReadFile
    // tries to verify whether the disk has bitrot.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          arg_data_type_and_updated_output_index;
    };
    
    // Lifts loads/stores from a PartitionedCallOp's callee function. If anything
    // needs to be changed, the original function will be preserved, and the lifting
    // happens on a clone, which will be stored in `result`.
    LogicalResult HandlePartitionedCallOpCallee(
        func::FuncOp callee, PartitionedCallLiftingInfo* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    			// that need padding, if not already done so (because this
    			// pass may execute more than once).
    			//
    			// This needs to come before any pass that look at pc,
    			// because pc will be adjusted if padding happens.
    			if p.Mark&branchLoopHead != 0 && pc&(loopAlign-1) != 0 &&
    				!(prev.As == obj.APCALIGN && prev.From.Offset >= loopAlign) {
    				q := c.newprog()
    				prev.Link = q
    				q.Link = p
    				q.Pc = pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    			options.KillPodOptions = &KillPodOptions{}
    		}
    
    		if ch := options.KillPodOptions.CompletedCh; ch != nil {
    			status.notifyPostTerminating = append(status.notifyPostTerminating, ch)
    		}
    		if fn := options.KillPodOptions.PodStatusFunc; fn != nil {
    			status.statusPostTerminating = append(status.statusPostTerminating, fn)
    		}
    
    		gracePeriod, gracePeriodShortened := calculateEffectiveGracePeriod(status, pod, options.KillPodOptions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    						return err
    					}
    					return nil
    				} else {
    					// This should never happen because someone had to remove
    					// AnnBindCompleted annotation on the claim.
    					logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume already bound to different claim by controller, THIS SHOULD NEVER HAPPEN", "PVC", klog.KObj(claim), "boundClaim", klog.KRef(volume.Spec.ClaimRef.Namespace, volume.Spec.ClaimRef.Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    			if hc.version == VersionTLS13 {
    				additionalData = record[:recordHeaderLen]
    			} else {
    				additionalData = append(hc.scratchBuf[:0], hc.seq[:]...)
    				additionalData = append(additionalData, record[:3]...)
    				n := len(payload) - c.Overhead()
    				additionalData = append(additionalData, byte(n>>8), byte(n))
    			}
    
    			var err error
    			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    }
    
    // gcMarkWorkerMode represents the mode that a concurrent mark worker
    // should operate in.
    //
    // Concurrent marking happens through four different mechanisms. One
    // is mutator assists, which happen in response to allocations and are
    // not scheduled. The other three are variations in the per-P mark
    // workers and are distinguished by gcMarkWorkerMode.
    type gcMarkWorkerMode int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top