Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// Whenever we do these changes, the ABI number must be increased.
    ///
    /// Next section will detail how this metadata is used at plugin registration to
    /// only load compatible plugins and discard all others.
    
    // LINT.IfChange(random_access_file_ops_version)
    constexpr int TF_RANDOM_ACCESS_FILE_OPS_API = 0;
    constexpr int TF_RANDOM_ACCESS_FILE_OPS_ABI = 0;
    constexpr size_t TF_RANDOM_ACCESS_FILE_OPS_SIZE =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    				}
    			} else {
    				cmd := t.dirCmd("src/cmd/cgo/internal/test", cc, "-xc", "-o", "/dev/null", "-static", "-")
    				cmd.Stdin = strings.NewReader("int main() {}")
    				cmd.Stdout, cmd.Stderr = nil, nil // Discard output
    				if err := cmd.Run(); err != nil {
    					// Skip these tests
    					staticCheck.skip = func(*distTest) (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top