Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for picard (0.16 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    				continue
    			}
    
    			// if this plugin has already been enabled by the specific extension point,
    			// the user intent is to override the default plugin or make some other explicit setting.
    			// Either way, discard the MultiPoint value for this plugin.
    			// This maintains expected behavior for overriding default plugins (see https://github.com/kubernetes/kubernetes/pull/99582)
    			if enabledSet.has(ep.Name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    				foundPrefixes = append(foundPrefixes, result.Prefixes...)
    				if !result.IsTruncated {
    					break
    				}
    				marker = result.NextMarker
    				if len(result.Objects) > 0 {
    					// Discard marker, so it cannot resume listing.
    					marker = result.Objects[len(result.Objects)-1].Name
    				}
    			}
    
    			if len(testCase.result.Objects) != len(foundObjects) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/testing/patch-module/groovy",files="build.gradle[tags=patchArgs]"]
    ====
    
    NOTE: If custom arguments are used for patching, these are not picked up by Eclipse and IDEA.
    You will most likely see invalid compilation errors in the IDE.
    
    [[sec:skipping_java_tests]]
    == Skipping the tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    				npattern += 8
    			}
    
    			// We started with the whole bit output buffer,
    			// and then we loaded bits from whole bytes.
    			// Either way, we might now have too many instead of too few.
    			// Discard the extra.
    			if npattern > n {
    				pattern >>= npattern - n
    				npattern = n
    			}
    
    			// Replicate pattern to at most maxBits.
    			if npattern == 1 {
    				// One bit being repeated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    				"-j", string(kubeMarkMasqChain))
    		} else {
    			// Masquerade all OUTPUT traffic coming from a service ip.
    			// The kube dummy interface has all service VIPs assigned which
    			// results in the service VIP being picked as the source IP to reach
    			// a VIP. This leads to a connection from VIP:<random port> to
    			// VIP:<service port>.
    			// Always masquerading OUTPUT (node-originating) traffic with a VIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    		// pld rX, x@got@tprel@pcrel
    		//
    		// to TLS_LE_TPREL32 by converting to:
    		// pla rX, x@tprel
    
    		const OP_MASK_PFX = 0xFFFFFFFF        // Discard prefix word
    		const OP_MASK = (0x3F << 26) | 0xFFFF // Preserve RT, RA
    		const OP_PFX = 1<<26 | 2<<24
    		const OP_PLA = 14 << 26
    		mask := packInstPair(target, OP_MASK_PFX, OP_MASK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    			v = sysReserve(unsafe.Pointer(p), n)
    		}
    		if p == uintptr(v) {
    			// Success. Update the hint.
    			if !hint.down {
    				p += n
    			}
    			hint.addr = p
    			size = n
    			break
    		}
    		// Failed. Discard this hint and try the next.
    		//
    		// TODO: This would be cleaner if sysReserve could be
    		// told to only return the requested address. In
    		// particular, this is already how Windows behaves, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		h.nevacuate++
    	}
    	if h.nevacuate == newbit { // newbit == # of oldbuckets
    		// Growing is all done. Free old main bucket array.
    		h.oldbuckets = nil
    		// Can discard old overflow buckets as well.
    		// If they are still referenced by an iterator,
    		// then the iterator holds a pointers to the slice.
    		if h.extra != nil {
    			h.extra.oldoverflow = nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    // ABIInternal for performance.
    TEXT runtime·memhash32<ABIInternal>(SB),NOSPLIT,$0-24
    	// AX = ptr to data
    	// BX = seed
    	CMPB	runtime·useAeshash(SB), $0
    	JEQ	noaes
    	MOVQ	BX, X0	// X0 = seed
    	PINSRD	$2, (AX), X0	// data
    	AESENC	runtime·aeskeysched+0(SB), X0
    	AESENC	runtime·aeskeysched+16(SB), X0
    	AESENC	runtime·aeskeysched+32(SB), X0
    	MOVQ	X0, AX	// return X0
    	RET
    noaes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// Eliminate copy inputs.
    				// If any copy input becomes unused, mark it
    				// as invalid and discard its argument. Repeat
    				// recursively on the discarded argument.
    				// This phase helps remove phantom "dead copy" uses
    				// of a value so that a x.Uses==1 rule condition
    				// fires reliably.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top