Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,849 for createops (0.12 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    "C:\\Program Files\\Java\\jdk1.8/bin/java.exe" -Xmx128m -Dfile.encoding=UTF-8 -XX:MaxPermSize=512m "-Djava.io.tmpdir=C:\\tcagent1\\temp\\buildTmp"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cmd/xl-storage_unix_test.go

    	}
    
    	// Attempt to create a volume to verify the permissions later.
    	// MakeVol creates directory with 0777 perms.
    	if err = disk.MakeVol(context.Background(), testCase.volName); err != nil {
    		t.Fatalf("Creating a volume failed with %s expected to pass.", err)
    	}
    
    	// Attempt to create a file to verify the permissions later.
    	// AppendFile creates file with 0666 perms.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      );
    
      let assemblyFormat = "$operand attr-dict `:` `(` type($operand) `)` `->` `(` type($results) `)`";
    }
    
    def CreateOp: FallbackAsync_Op<"createop", [CoreRT_TypedAttributeTrait]> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
    
        op_key: The unique key to identify this op.
        num_args: The number of inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      let results = (outs
        Variadic<TensorType>:$results
      );
    
      let assemblyFormat = "attr-dict `:` type($results)";
    }
    
    def CreateOp: FallbackSync_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
    
        op_key: The unique key to identify this op.
        num_args: The number of inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    Gradle runs these phases in order:
    
    Phase 1. Initialization::
    - Detects the `settings.gradle(.kts)` file.
    - Creates a link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[`Settings`] instance.
    - Evaluates the settings file to determine which projects (and included builds) make up the build.
    - Creates a link:{groovyDslPath}/org.gradle.api.Project.html[`Project`] instance for every project.
    Phase 2. Configuration::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td"
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td"
    
    def CreateOp: TensorflowMlrt_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ModuleVersionResolveException.java

        }
    
        /**
         * Creates a copy of this exception, with the given incoming paths.
         */
        public ModuleVersionResolveException withIncomingPaths(Collection<? extends List<? extends ComponentIdentifier>> paths) {
            ModuleVersionResolveException copy = createCopy();
            copy.paths.addAll(paths);
            copy.initCauses(getCauses());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:29:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/kubernetesservice/controller_test.go

    			creates := []core.CreateAction{}
    			for _, action := range fakeClient.Actions() {
    				if action.GetVerb() == "create" {
    					creates = append(creates, action.(core.CreateAction))
    				}
    			}
    			if test.expectCreate != nil {
    				if len(creates) != 1 {
    					t.Errorf("case %q: unexpected creations: %v", test.testName, creates)
    				} else {
    					obj := creates[0].GetObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control.go

    // with a clientset for writes and listers for reads; for tests we provide stubs.
    type StatefulPodControlObjectManager interface {
    	CreatePod(ctx context.Context, pod *v1.Pod) error
    	GetPod(namespace, podName string) (*v1.Pod, error)
    	UpdatePod(pod *v1.Pod) error
    	DeletePod(pod *v1.Pod) error
    	CreateClaim(claim *v1.PersistentVolumeClaim) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            JvmOptions opts = createOpts()
            when:
            opts.defaultCharacterEncoding = "ISO-8859-1"
            then:
            opts.allJvmArgs.contains("-Dfile.encoding=ISO-8859-1");
        }
    
        def "uses system default file encoding when null is used"() {
            JvmOptions opts = createOpts()
            when:
            opts.defaultCharacterEncoding = null
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top