Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 495 for outp (0.08 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    				fallthrough
    			case ssStarter:
    				if outp > 0 {
    					copy(i.buf[outp:], d)
    					return i.buf[:p]
    				}
    				return d
    			}
    			copy(i.buf[outp:], d)
    			outp = p
    			inCopyStart, outCopyStart = i.p, outp
    			if i.info.ccc < prevCC {
    				goto doNorm
    			}
    			continue
    		} else if r := i.rb.src.hangul(i.p); r != 0 {
    			outp = decomposeHangul(i.buf[:], r)
    			i.p += hangulUTF8Size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	ADD	$16, INP
    	VXOR	INOUT, V6, INOUT
    	CIPHER_BLOCK(INOUT, IVEC, INOUT, VCIPHER, VCIPHERLAST, Lcbc_enc10, Lcbc_enc12)
    	VOR	INOUT, INOUT, IVEC // ciphertext (INOUT) is IVEC for next block.
    	P8_STXVB16X(INOUT, OUTP, R0)
    	ADD	$16, OUTP
    	BDNZ	Lcbc_enc
    
    	P8_STXVB16X(INOUT, IVP, R0)
    	CLEAR_KEYS()
    	RET
    
    	PCALIGN $16
    Lcbc_dec:
    	P8_LXVB16X(INP, R0, TMP)
    	ADD	$16, INP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

        add_attrs(g.node());
    
        auto out0 = ops::XlaClusterOutput(scope.WithOpName("Out0"), b_identity);
        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);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/internal/zstd/literals.go

    			if err != nil {
    				return nil, err
    			}
    			outbuf[out4] = byte(t4 >> 8)
    			out4++
    			rbr4.cnt -= uint32(t4 & 0xff)
    		}
    
    		outbuf[out1] = byte(t1 >> 8)
    		out1++
    		rbr1.cnt -= uint32(t1 & 0xff)
    
    		outbuf[out2] = byte(t2 >> 8)
    		out2++
    		rbr2.cnt -= uint32(t2 & 0xff)
    
    		outbuf[out3] = byte(t3 >> 8)
    		out3++
    		rbr3.cnt -= uint32(t3 & 0xff)
    	}
    
    	return outbuf, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients_test.cc

        // Add StopGradients according to 'stop_outputs'.
        auto out0 = stop_outputs[0]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out1 = stop_outputs[1]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out2 = stop_outputs[2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  6. src/cmd/fix/main_test.go

    				}()
    			}
    
    			// Apply fix: should get tt.Out.
    			out, fixed, ok := parseFixPrint(t, tt.Fn, tt.Name, tt.In, true)
    			if !ok {
    				return
    			}
    
    			// reformat to get printing right
    			out, _, ok = parseFixPrint(t, fnop, tt.Name, out, false)
    			if !ok {
    				return
    			}
    
    			if tt.Out == "" {
    				tt.Out = tt.In
    			}
    			if out != tt.Out {
    				t.Errorf("incorrect output.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TasksWithInputsAndOutputs.groovy

                class OutputFilesTask extends DefaultTask {
                    @OutputFile
                    File out1
                    @OutputFile
                    File out2
                    @TaskAction
                    def go() {
                        out1.text = "1"
                        out2.text = "2"
                    }
                }
            """
        }
    
        def taskTypeWithMultipleOutputFileProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

                public class MyTest {
                    @org.junit.Test public void works() throws Exception {
                        System.out.print("out1");
                        System.err.print("err1");
                    }
                    @org.junit.Test public void fails() throws Exception {
                        System.out.print("out2");
                        System.err.print("err2");
                        org.junit.Assert.fail();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/abiutilsaux_test.go

    	return s
    }
    
    func mkFuncType(rcvr *types.Type, ins []*types.Type, outs []*types.Type) *types.Type {
    	q := typecheck.Lookup("?")
    	inf := []*types.Field{}
    	for _, it := range ins {
    		inf = append(inf, mkParamResultField(it, q, ir.PPARAM))
    	}
    	outf := []*types.Field{}
    	for _, ot := range outs {
    		outf = append(outf, mkParamResultField(ot, q, ir.PPARAMOUT))
    	}
    	var rf *types.Field
    	if rcvr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top