Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 120 for ind2 (0.04 sec)

  1. tests/integration/pilot/analyze_test.go

    					Cluster: c,
    				})
    				secret, _, err := createRemoteSecret(t, istioCtl, c.Name())
    				g.Expect(err).To(BeNil())
    				secrets[c.Name()] = secret
    			}
    			for ind, c := range t.Environment().Clusters() {
    				// apply remote secret to be used for analysis
    				for sc, secret := range secrets {
    					if c.Name() == sc {
    						continue
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: BNDMOV (BX), BND2               // 660f1a13
    	//TODO: BNDMOV (R11), BND2              // 66410f1a13
    	//TODO: BNDMOV BND2, BND2               // 660f1ad2 or 660f1bd2
    	//TODO: BNDMOV BND3, BND2               // 660f1ad3 or 660f1bda
    	//TODO: BNDMOV (BX), BND3               // 660f1a1b
    	//TODO: BNDMOV (R11), BND3              // 66410f1a1b
    	//TODO: BNDMOV BND2, BND3               // 660f1ada or 660f1bd3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: %[[INDS:.*]] = "tf.Const"() <{value = dense<[2, 1]> : tensor<2xi32>}> : () -> tensor<2xi32>
      %indices = "tf.Const"() {value = dense<[2, 1]> : tensor<2xi32>} : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * Only takes effect when compiling against Groovy 1.8 or higher.
         *
         * <p>Known options are:
         *
         * <dl>
         *     <dt>indy
         *     <dd>Use the invokedynamic bytecode instruction. Requires JDK7 or higher and Groovy 2.0 or higher. Disabled by default.
         *     <dt>int
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload.go

    	// Note: while "removed" is a weird name for a resource that never existed, this is how the spec works:
    	// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#id2
    	have := sets.New[string]()
    	haveAliases := sets.New[string]()
    	for _, addr := range addrs {
    		// TODO(@hzxuzhonghu): calculate removed with aliases in `AddressInformation`
    		aliases := addr.Aliases()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	}
    	if c.id2 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id2, testInputsID, testAndInputKey(c.id2, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id2, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id2, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/trace/pprof.go

    	start, end trace.Time
    }
    
    func (i interval) duration() time.Duration {
    	return i.end.Sub(i.start)
    }
    
    func (i1 interval) overlap(i2 interval) time.Duration {
    	// Assume start1 <= end1 and start2 <= end2
    	if i1.end < i2.start || i2.end < i1.start {
    		return 0
    	}
    	if i1.start < i2.start { // choose the later one
    		i1.start = i2.start
    	}
    	if i1.end > i2.end { // choose the earlier one
    		i1.end = i2.end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    				if p.As == AMOVB {
    					ins.imm = 56
    				} else if p.As == AMOVH {
    					ins.imm = 48
    				}
    				ins2 := &instruction{as: ASRAI, rd: ins.rd, rs1: ins.rd, imm: ins.imm}
    				inss = append(inss, ins2)
    			}
    		case AMOVHU, AMOVWU:
    			if buildcfg.GORISCV64 >= 22 {
    				// Use ZEXTH or ADDUW to extend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        func.eraseBody();
        func.addEntryBlock();
        OpBuilder builder(func.getBody());
        if (failed(ConvertKerasLSTMLayer(func, &builder)))
          return signalPassFailure();
      }
    
      // LSTM `func::FuncOps` with indy behavior always have the `tf.api_implements`
      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteSource.java

        Closer closer = Closer.create();
        try {
          InputStream in1 = closer.register(openStream());
          InputStream in2 = closer.register(other.openStream());
          while (true) {
            int read1 = ByteStreams.read(in1, buf1, 0, buf1.length);
            int read2 = ByteStreams.read(in2, buf2, 0, buf2.length);
            if (read1 != read2 || !Arrays.equals(buf1, buf2)) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
Back to top