Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for out2 (0.09 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        %out, %c1 = tf_executor.island wraps "tf.opA"(%ri) {_tpu_replicate="cluster"}: (tensor<i32>) -> tensor<i32>
        // expected-warning @+1 {{TF2XLA TPU bridge input check: cluster op = tf.opA with cluster = cluster has successor as non cluster op tf.opB}}
        %out2, %c2 = tf_executor.island wraps "tf.opB"(%out) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tests/post-quantize.mlir

    // QDQ-NEXT: %[[out1:.*]] = "tfl.dequantize"(%[[split]]#0) : (tensor<2x!quant.uniform<u8:f32, 1.000000e+00>>) -> tensor<2xf32>
    // QDQ-NEXT: %[[out2:.*]] = "tfl.dequantize"(%[[split]]#1) : (tensor<2x!quant.uniform<u8:f32, 1.000000e+00>>) -> tensor<2xf32>
    // QDQ-NEXT: return %[[out1]], %[[out2]] : tensor<2xf32>, tensor<2xf32>
    }
    
    // CHECK-LABEL: RemoveTrival
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            taskTypeWithInputFileListProperty()
            buildFile """
                task produce1(type: FileProducer) {
                    output = file("out1.txt")
                    content = "one"
                }
                task produce2(type: FileProducer) {
                    output = file("out2.txt")
                    content = "two"
                }
                def files = project.files(produce1, produce2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                }
    
                task resolve1(type: Sync) {
                    from configurations.compileClasspath
                    into 'out1'
                }
                task resolve2(type: Sync) {
                    from configurations.testCompileClasspath
                    into 'out2'
                    mustRunAfter(tasks.resolve1)
                }
            """
            file("src/main/java/Thing.java") << "public class Thing { }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/aot/tfcompile.bzl

                testonly = 1,
                srcs = [
                    template_file,
                    header_file,
                ],
                outs = [test_file],
                cmd = (
                    "sed " + sed_replace +
                    " $(location " + template_file + ") " +
                    "> $(OUTS)"
                ),
                tags = tags,
            )
    
            # The cc_test rule for the generated code.  To ensure that this works
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. 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)
Back to top