Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for Grappler (0.18 sec)

  1. src/runtime/asm_amd64.s

    #endif
    	// On some platforms (Windows) we cannot call needm through
    	// an ABI wrapper because there's no TLS set up, and the ABI
    	// wrapper will try to restore the G register (R14) from TLS.
    	// Clear X15 because Go expects it and we're not calling
    	// through a wrapper, but otherwise avoid setting the G
    	// register in the wrapper and call needm directly. It
    	// takes no arguments and doesn't return any values so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    }
                }
                abstract class Consumer extends DefaultTask {
                    @${ServiceReference.name}('wrapper')
                    abstract Property<WrapperService> getWrapper()
                    @TaskAction
                    def go() {
                        wrapper.get().incrementIndirectly()
                    }
                }
    
                gradle.sharedServices.registerIfAbsent("counter", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    						}
    					}
    				}
    			}
    		})
    	}
    }
    
    // Wrapper for calling ListObjectsOnVersionedBuckets tests for both
    // Erasure multiple disks and single node setup.
    func TestListObjectsOnVersionedBuckets(t *testing.T) {
    	ExecObjectLayerTest(t, testListObjectsOnVersionedBuckets)
    }
    
    // Wrapper for calling ListObjects tests for both Erasure multiple
    // disks and single node setup.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		ps.sidecarIndex.sidecarsForGatewayByNamespace[proxy.ConfigNamespace] = computed
    		return computed
    	case SidecarProxy:
    		if hasSidecar {
    			for _, wrapper := range sidecars {
    				if wrapper.Sidecar != nil {
    					sidecar := wrapper.Sidecar
    					// if there is no workload selector, the config applies to all workloads
    					// if there is a workload selector, check for matching workload labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top