Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 660 for outo (0.1 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

        auto out1 = ops::XlaClusterOutput(scope.WithOpName("Out1"), e);
        auto out2 = ops::XlaClusterOutput(scope.WithOpName("Out2"), g);
        auto out3 = ops::XlaClusterOutput(scope.WithOpName("Out3"), read_u);
    
        auto consumer0_a = ops::Identity(scope.WithOpName("consumer0_a"), out0);
        auto consumer0_b = ops::Identity(scope.WithOpName("consumer0_b"), out0);
        auto consumer0_c = ops::Identity(scope.WithOpName("consumer0_c"), out0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                apply plugin: "base"
                tasks.create("t", CustomTask).paths << "out1" << "out2"
            """
            succeeds("t")
            remote("", "writer.writeTo(${NullOutputStream.name}.INSTANCE)")
            def initialPackOp = operations.only(BuildCacheArchivePackBuildOperationType)
            def artifactFileCopy = file("artifact")
            // move it out of the local for us to use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

                    out1 = file("a-1.txt")
                    out2 = file("a-2.txt")
                }
                def b = tasks.create("b", OutputFilesTask) {
                    out1 = file("b-1.txt")
                    out2 = file("b-2.txt")
                }
                def files = objects.setProperty(RegularFile)
                files.add(a.out1)
                files.add(b.out2)
                tasks.register("c", InputFilesTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/a.out.go

    	C_VCON     // 64-bit constant
    	C_FCON     // floating-point constant
    	C_VCONADDR // 64-bit memory address
    
    	C_AACON  // ADDCON offset in auto constant $a(FP)
    	C_AACON2 // 24-bit offset in auto constant $a(FP)
    	C_LACON  // 32-bit offset in auto constant $a(FP)
    	C_AECON  // ADDCON offset in extern constant $e(SB)
    
    	// TODO(aram): only one branch class should be enough
    	C_SBRA // for TYPE_BRANCH
    	C_LBRA
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/builder_test.go

    	}
    	if forTCP {
    		out := &listener.Filter{}
    		if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    			t.Fatalf("failed to parse YAML: %v", err)
    		}
    		return out
    	}
    	out := &hcm.HttpFilter{}
    	if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    		t.Fatalf("failed to parse YAML: %v", err)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/a.out.go

    	C_LACON    // computed address, 32-bit displacement, possibly SP-relative
    	C_DACON    // computed address, 64-bit displacement?
    	C_SBRA     // short branch
    	C_LBRA     // long branch
    	C_SAUTO    // short auto
    	C_LAUTO    // long auto
    	C_ZOREG    // heap address, register-based, displacement == 0
    	C_SOREG    // heap address, register-based, int16 displacement
    	C_LOREG    // heap address, register-based, int32 displacement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                class MyTask extends DefaultTask {
                    @OutputFiles Set<File> out = new HashSet<File>()
    
                    @TaskAction def exec() {
                        out.each { it.text = 'data' }
                    }
                }
    
                task myTask(type: MyTask) {
                    out.addAll([file("out1"), file("out2")])
                }
            """
    
            when:
            run ':myTask'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // guarantee as to which one). If there are no BiasAdds that use the output,
    // returns a null BiasAddOp.
    BiasAddOp GetBiasAdd(Value op) {
      for (auto &use : op.getUses()) {
        auto bias_add = dyn_cast_or_null<BiasAddOp>(use.getOwner());
        // If it's a BiasAdd, check that the conv op is the first input.
        if (bias_add && bias_add.getValue() == op) return bias_add;
      }
      // No BiasAddOps found among uses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if _, err := outf.Seek(int64(dwarfCmdOffset), 0); err != nil {
    		return err
    	}
    	if _, err := io.CopyN(outf, bytes.NewReader(realdwarf.Raw()), int64(realdwarf.Len)); err != nil {
    		return err
    	}
    	if _, err := outf.Seek(int64(unsafe.Offsetof(exem.FileHeader.Ncmd)), 0); err != nil {
    		return err
    	}
    	if err := binary.Write(outf, exem.ByteOrder, exem.Ncmd+1); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            secondLine.put("@timestamp", item.getTimestamp());
    
            try (OutputStream out1 = getXContentOutputStream(firstLineMap); OutputStream out2 = getXContentOutputStream(secondLine)) {
                return ((ByteArrayOutputStream) out1).toString(CoreLibConstants.UTF_8) + '\n'
                        + ((ByteArrayOutputStream) out2).toString(CoreLibConstants.UTF_8);
            } catch (final IOException e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top