Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for Grappler (0.25 sec)

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

    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    /// Lifetime: The wrapper data structures are owned by core TensorFlow. The data
    /// pointed to by the `void*` members is always owned by the plugin. The plugin
    /// will provide functions to call to allocate and deallocate this data (see
    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/vendor/golang.org/x/sys/unix/syscall_linux.go

    // SchedSetAttr is a wrapper for sched_setattr(2) syscall.
    // https://man7.org/linux/man-pages/man2/sched_setattr.2.html
    func SchedSetAttr(pid int, attr *SchedAttr, flags uint) error {
    	if attr == nil {
    		return EINVAL
    	}
    	attr.Size = SizeofSchedAttr
    	return schedSetattr(pid, attr, flags)
    }
    
    // SchedGetAttr is a wrapper for sched_getattr(2) syscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    			// Ensure that new instances are returned for the wrapper too.
    			t.Errorf("Expected URL.Parse to return new URL instance.")
    		}
    		// Ensure Opaque resets the URL.
    		url = base.ResolveReference(opaque)
    		if *url != *opaque {
    			t.Errorf("ResolveReference failed to resolve opaque URL:\ngot  %#v\nwant %#v", url, opaque)
    		}
    		// Test the convenience wrapper with an opaque URL too.
    		url, err = base.Parse("scheme:opaque")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    	gcDrainIdle
    	gcDrainFractional
    )
    
    // gcDrainMarkWorkerIdle is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerIdle(gcw *gcWork) {
    	gcDrain(gcw, gcDrainIdle|gcDrainUntilPreempt|gcDrainFlushBgCredit)
    }
    
    // gcDrainMarkWorkerDedicated is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Those methods should never be directly implemented.
    
    ==== Wrapper task configuration
    If `gradle-wrapper.properties` contains the `distributionSha256Sum` property, you must specify a sum.
    You can specify a sum in the wrapped task configuration or with the `--gradle-distribution-sha256-sum` task option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    //
    // Provides helper functions to access the operands and the callee.
    class UniformQuantizeFunctionCallPattern {
     public:
      // Returns Failure if it doesn't match. Returns the "wrapper" for the uniform
      // dequantization function call pattern when matched.
      static FailureOr<UniformQuantizeFunctionCallPattern> Match(
          func::CallOp call_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    	case mrfCheck <- fi.ShallowCopy():
    	case <-ctx.Done():
    		return fi, onlineMeta, onlineDisks, toObjectErr(ctx.Err(), bucket, object)
    	}
    
    	return fi, onlineMeta, onlineDisks, nil
    }
    
    // getObjectInfo - wrapper for reading object metadata and constructs ObjectInfo.
    func (er erasureObjects) getObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) {
    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. pilot/pkg/networking/core/route/route.go

    		)
    		out = append(out, wrappers...)
    	}
    
    	// Now exclude the services that have virtual services.
    	for _, wrapper := range out {
    		for _, service := range wrapper.Services {
    			delete(serviceRegistry, service.Hostname)
    		}
    	}
    
    	for _, svc := range serviceRegistry {
    		for _, port := range svc.Ports {
    			if port.Protocol.IsHTTPOrSniffed() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	// EnumProcesses syscall expects the size parameter to be in bytes, but the code generated with mksyscall uses
    	// the length of the processIds slice instead. Hence, this wrapper function is added to fix the discrepancy.
    	var p *uint32
    	if len(processIds) > 0 {
    		p = &processIds[0]
    	}
    	size := uint32(len(processIds) * 4)
    	return enumProcesses(p, size, bytesReturned)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    "use strict";
    
    // top wrapper to prevent multiple inclusion (is this OK?)
    (function () { if(jQuery && jQuery.jstree) { return; }
    	var is_ie6 = false, is_ie7 = false, is_ff2 = false;
    
    /*
     * jsTree core
     */
    (function ($) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top