Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 302 for continues (0.29 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	// Test that VPERMPD that shares ytab list with VPERMQ continues to work too.
    	VPERMPD $-40, Y7, Y7 // c4e3fd01ffd8
    	VPERMPD $216, Y7, Y7 // c4e3fd01ffd8
    	// Check that LEAL is permitted to use overflowing offset.
    	LEAL 2400959708(BP)(R10*1), BP // 428dac15dcbc1b8f
    	LEAL 3395469782(AX)(R10*1), AX // 428d8410d6c162ca
    	// Make sure MOV CR/DR continues to work after changing its movtabs.
    	MOVQ CR0, AX // 0f20c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    		if frame.Function == "runtime.gopanic" {
    			continue
    		}
    		if frame.Function == c.cleanupName {
    			frames = runtime.CallersFrames(c.cleanupPc)
    			continue
    		}
    		if firstFrame.PC == 0 {
    			firstFrame = frame
    		}
    		if frame.Function == c.runner {
    			// We've gone up all the way to the tRunner calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			probeTimestamp:           nc.now(),
    			readyTransitionTimestamp: transitionTime,
    		}
    	}
    	// Always update the probe time if node lease is renewed.
    	// Note: If kubelet never posted the node status, but continues renewing the
    	// heartbeat leases, the node controller will assume the node is healthy and
    	// take no action.
    	observedLease, _ := nc.leaseLister.Leases(v1.NamespaceNodeLease).Get(node.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		pg := f.pluginsMap[e.Name]
    		if !reflect.TypeOf(pg).Implements(pluginType) {
    			continue
    		}
    
    		// We append MultiPoint plugins to the list of Score plugins. So if this plugin has already been
    		// encountered, let the individual Score weight take precedence.
    		if _, ok := f.scorePluginWeight[e.Name]; ok {
    			continue
    		}
    		// a weight of zero is not permitted, plugins can be disabled explicitly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
    
            // Error will be thrown later. Don't emit a duplicate warning.
            if (!usageCanBeMutated && (current != newValue)) {
                return;
            }
    
            // KGP continues to set the already-set value for a given usage even though it is already set
            boolean redundantChange = current == newValue;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. src/net/http/request.go

    // disk in temporary files.
    // ParseMultipartForm calls [Request.ParseForm] if necessary.
    // If ParseForm returns an error, ParseMultipartForm returns it but also
    // continues parsing the request body.
    // After one call to ParseMultipartForm, subsequent calls have no effect.
    func (r *Request) ParseMultipartForm(maxMemory int64) error {
    	if r.MultipartForm == multipartByReader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    		prefer := make([]bool, len(onlineDisks))
    		for index, disk := range onlineDisks {
    			if disk == OfflineDisk {
    				continue
    			}
    			if !metaArr[index].IsValid() {
    				continue
    			}
    			if !metaArr[index].Erasure.Equal(fi.Erasure) {
    				continue
    			}
    			checksumInfo := metaArr[index].Erasure.GetChecksumInfo(partNumber)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    			sf := iu.srcFunc(uf)
    			callee := u.calleeFuncID
    			u.calleeFuncID = sf.funcID
    			if !(showRuntime || showframe(sf, gp, n == 0, callee)) {
    				continue
    			}
    
    			if pr, stop := commitFrame(); stop {
    				return
    			} else if !pr {
    				continue
    			}
    
    			name := sf.name()
    			file, line := iu.fileLine(uf)
    			// Print during crash.
    			//	main(0x1, 0x2, 0x3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    		// heap is growing. Compute a new heap goal that takes our existing runway
    		// computed for scanWorkExpected and extrapolates it to maxScanWork, the worst-case
    		// scan work. This keeps our assist ratio stable if the heap continues to grow.
    		//
    		// The effect of this mechanism is that assists stay flat in the face of heap
    		// growths. It's OK to use more memory this cycle to scan all the live heap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	for {
    		released, workTime := scavenger.run()
    		if released == 0 {
    			scavenger.park()
    			continue
    		}
    		mheap_.pages.scav.releasedBg.Add(released)
    		scavenger.sleep(workTime)
    	}
    }
    
    // scavenge scavenges nbytes worth of free pages, starting with the
    // highest address first. Successive calls continue from where it left
    // off until the heap is exhausted. force makes all memory available to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top