Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for outp (0.13 sec)

  1. 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)
  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. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    task producer(type: OutputFilesTask) {
                        out1.convention(layout.buildDirectory.file("\${project.name}.out1.jar"))
                        out2.convention(layout.buildDirectory.file("\${project.name}.out2.jar"))
                    }
    
                    artifacts {
                        implementation producer.out1
                        implementation producer.out2
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace.go

    			// 1ns.
    			out1 := Event{
    				ctx: schedCtx{
    					G: GoID(ev.G),
    					P: ProcID(ev.P),
    					M: it.procMs[ProcID(ev.P)],
    				},
    				table: it.evt,
    				base: baseEvent{
    					typ:  go122.EvGoSyscallBegin,
    					time: Time(ev.Ts),
    					args: timedEventArgs{1: uint64(ev.StkID)},
    				},
    			}
    
    			out2 := Event{
    				ctx:   out1.ctx,
    				table: it.evt,
    				base: baseEvent{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/ehooks_test.go

    			cmd := exec.Command(exe, []string{"-mode", s.mode}...)
    			out, _ := cmd.CombinedOutput()
    			outs := strings.ReplaceAll(string(out), "\n", " ")
    			outs = strings.TrimSpace(outs)
    			if s.expected != "" && s.expected != outs {
    				t.Fatalf("failed%s mode %s: wanted %q\noutput:\n%s", bt,
    					s.mode, s.expected, outs)
    			}
    			for _, need := range s.musthave {
    				if !strings.Contains(outs, need) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      }];
    
      let arguments = (ins);
    
      let results = (outs
        Res<TF_Int32Tensor, [{A vector containing the global TPU id of each TPU on the host.}]>:$output
      );
    }
    
    def TF_ShutdownTPUSystemOp : TF_Op<"ShutdownTPUSystem", []> {
      let summary = [{
    An op that shuts down the TPU system.
      }];
    
      let arguments = (ins);
      let results = (outs
        TF_BoolTensor:$success
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs);
    }
    
    
    def TFL_HashtableSizeOp: TFL_Op<"hashtable_size", []> {
      let summary = "Computes the number of elements in the given table.";
    
      let arguments = (ins
        TFL_ResourceTensor:$hash_table
      );
    
      let results = (outs
        TFL_I64Tensor:$out
      );
    }
    
    def TFL_BroadcastArgsOp : TFL_Op<"broadcast_args",[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularImmutableMap.java

                continue entries;
              }
            }
            if (outI < i) { // if outI == i don't bother writing the values back where they came from
              alternatingKeysAndValues[outKeyIndex] = key;
              alternatingKeysAndValues[outKeyIndex ^ 1] = value;
            }
            outI++;
          }
          return outI == n ? hashTable : new Object[] {hashTable, outI, duplicateKey};
        } else if (tableSize <= SHORT_MAX_SIZE) {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top