Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 315 for Res (0.11 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                    ${changed ? "public void doStuff() {}" : ""}
                }""".stripIndent()
    
            file("${basedir}/src/main/res/layout/${resourceName}_layout.xml").text = '''<?xml version="1.0" encoding="utf-8"?>
                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                    android:orientation="vertical"
                    android:layout_width="fill_parent"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typexpr.go

    func (check *Checker) typeList(list []syntax.Expr) []Type {
    	res := make([]Type, len(list)) // res != nil even if len(list) == 0
    	for i, x := range list {
    		t := check.varType(x)
    		if !isValid(t) {
    			res = nil
    		}
    		if res != nil {
    			res[i] = t
    		}
    	}
    	return res
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    }
    
    func Send(ctx ConnectionContext, res *discovery.DiscoveryResponse) error {
    	conn := ctx.XdsConnection()
    	sendResponse := func() error {
    		start := time.Now()
    		defer func() { RecordSendTime(time.Since(start)) }()
    		return conn.stream.Send(res)
    	}
    	err := sendResponse()
    	if err == nil {
    		if res.Nonce != "" && !strings.HasPrefix(res.TypeUrl, model.DebugType) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	}
    	res := []fnInlHeur{}
    	csres := []encodedCallSiteTab{}
    	for {
    		dentry, dcst, err := dr.readEntry()
    		if err != nil {
    			t.Fatalf("reading func prop dump: %v", err)
    		}
    		if dentry.fname == "" {
    			break
    		}
    		res = append(res, dentry)
    		csres = append(csres, dcst)
    	}
    	return res, csres, nil
    }
    
    func (dr *dumpReader) scan() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    DependencyResolverResult res =
                            sessionV4.getService(DependencyResolver.class).resolve(sessionV4, project, ps);
                    if (field.getType() == DependencyResolverResult.class) {
                        result = res;
                    } else if (field.getType() == Node.class) {
                        result = res.getRoot();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_tls.go

    		} else {
    			// If CredentialName is not set fallback to files specified in DR.
    			res := security.SdsCertificateConfig{
    				CaCertificatePath: tls.CaCertificates,
    			}
    			// If tls.CaCertificate or CaCertificate in Metadata isn't configured, or tls.InsecureSkipVerify is true,
    			// don't set up SdsSecretConfig
    			if !res.IsRootCertificate() || tls.GetInsecureSkipVerify().GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

      llvm::SmallVector<std::vector<NamedAttribute>, 8> result_attrs;
      {
        llvm::SmallVector<DictionaryAttr, 8> tmp;
        func.getAllResultAttrs(tmp);
    
        for (const auto& res : tmp) {
          result_attrs.push_back(res.getValue().vec());
        }
      }
    
      mlir::Builder builder(func.getOperation());
    
      for (OpOperand& operand : fetch.getOperation()->getOpOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/canonicalize.mlir

      %0 = tfr.constant [1, -1, 3] -> !tfr.attr
      %1 = "tfr.constant_tensor"(%0) : (!tfr.attr) -> !tfr.tensor
      func.return %1 : !tfr.tensor
    
    // CHECK-NEXT: %[[RES:.*]] = "tf.Const"() <{value = dense<[1, -1, 3]> : tensor<3xi64>}> : () -> tensor<3xi64>
    // CHECK-NEXT: "tfr.cast"(%[[RES]]) : (tensor<3xi64>) -> !tfr.tensor
    // CHECK-NEXT: return
    }
    
    // -----
    
    // CHECK-LABEL: constant_tensor_scalar
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    			key := makeCacheKey(i)
    			req := &model.PushRequest{Start: zeroTime.Add(time.Duration(i))}
    			c.Add(key, req, res)
    		}
    		b.ResetTimer()
    		for n := 0; n < b.N; n++ {
    			key := makeCacheKey(1)
    			req := &model.PushRequest{Start: zeroTime.Add(time.Duration(features.XDSCacheMaxSize + n))}
    			c.Add(key, req, res)
    		}
    	})
    	b.Run("get", func(b *testing.B) {
    		c := model.NewXdsCache()
    		key := makeCacheKey(1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/vet/vet_test.go

    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		line = strings.TrimSuffix(line, "\r") // normalize Windows output
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top