Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for buildDir (0.46 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    requiresFactory,
                    propertiesToAttachAtConstruction,
                    propertiesToAttachOnDemand,
                    ineligibleProperties
                );
                builder.startClass();
                return builder;
            }
        }
    
        @NonNullApi
        private static class ClassBuilderImpl extends ClassVisitorScope implements ClassGenerationVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      OpBuilder builder(&func.front().front());
      for (auto arg : func.getArguments()) {
        Value operand = op.getOperand(arg.getArgNumber());
        if (isa_and_nonnull<TF::ConstOp>(operand.getDefiningOp())) {
          xla_recv_at_host_op.getResult(arg.getArgNumber())
              .replaceAllUsesWith(
                  builder.clone(*operand.getDefiningOp())->getResult(0));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    	if runtime.GOOS != "darwin" {
    		t.Skip("only affects darwin")
    	}
    
    	testenv.MustHaveExecPath(t, "sw_vers")
    	if vers, err := macosMajorVersion(t); err != nil {
    		if builder := testenv.Builder(); builder != "" {
    			t.Fatalf("unable to determine macOS version: %s", err)
    		} else {
    			t.Skip("unable to determine macOS version")
    		}
    	} else if vers < 11 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	var params strings.Builder
    	if len(re.Params) == 0 {
    		fmt.Fprintf(&params, "%*sParams: nil", indent+2, "")
    	} else {
    		fmt.Fprintf(&params, "%*sParams:", indent+2, "")
    		for i, p := range re.Params {
    			params.WriteByte('\n')
    			params.WriteString(p.goString(indent+4, fmt.Sprintf("%d: ", i)))
    		}
    	}
    
    	var requirements strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      public void testCancellingAllDelegatesIsNotQuadratic() throws Exception {
        ImmutableList.Builder<SettableFuture<Long>> builder = ImmutableList.builder();
        for (int i = 0; i < 500_000; i++) {
          builder.add(SettableFuture.<Long>create());
        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      public void testCancellingAllDelegatesIsNotQuadratic() throws Exception {
        ImmutableList.Builder<SettableFuture<Long>> builder = ImmutableList.builder();
        for (int i = 0; i < 500_000; i++) {
          builder.add(SettableFuture.<Long>create());
        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    
      let arguments = (ins TFL_TensorOf<[F32, QI8, QI16]>:$x);
    
      let results = (outs TFL_TensorOf<[F32, QI8, QI16]>:$y);
    
      // This builder doesn't work with quantized type, so it can only be used by
      // non-quantization tablegen patterns. Currently, it is used by the
      // elementwise-move reordering pattern in the optimize_patterns.td
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	handler Handler
    }
    
    func newHandlerTest(h Handler) handlerTest {
    	return handlerTest{handler: h}
    }
    
    func (ht *handlerTest) rawResponse(req string) string {
    	reqb := reqBytes(req)
    	var output strings.Builder
    	conn := &rwTestConn{
    		Reader: bytes.NewReader(reqb),
    		Writer: &output,
    		closec: make(chan bool, 1),
    	}
    	ln := &oneConnListener{conn: conn}
    	srv := &Server{
    		ErrorLog: log.New(&ht.logbuf, "", 0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    }
    func testTransportCancelRequestInDial(t *testing.T, test cancelTest) {
    	defer afterTest(t)
    	if testing.Short() {
    		t.Skip("skipping test in -short mode")
    	}
    	var logbuf strings.Builder
    	eventLog := log.New(&logbuf, "", 0)
    
    	unblockDial := make(chan bool)
    	defer close(unblockDial)
    
    	inDial := make(chan bool)
    	tr := &Transport{
    		Dial: func(network, addr string) (net.Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.python.ops import variables
    from tensorflow.python.platform import test
    from tensorflow.python.platform import tf_logging as logging
    from tensorflow.python.saved_model import builder
    from tensorflow.python.saved_model import loader_impl as saved_model_loader
    from tensorflow.python.saved_model import save as saved_model_save
    from tensorflow.python.saved_model import save_options
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top