Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 310 for Nname (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

        : ctx_(ABSL_DIE_IF_NULL(ctx)) {}  // Crash OK
    
    absl::StatusOr<ModuleOp> WeightOnlyPtqComponent::Run(
        ModuleOp module_op, const QuantizationConfig& config) {
      TF_RETURN_IF_ERROR(RunPasses(
          kName, /*add_passes_func=*/
          [&config](PassManager& pm) {
            // Add instrumentation to save quantization report after quantization.
            pm.addInstrumentation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. releasenotes/notes/alt-stat-name.yaml

    Rama Chavali <******@****.***> 1716199771 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

      name: reviews-istio-waypoint
      namespace: ambient
    spec:
      ports:
      - appProtocol: tcp
        name: status-port
        port: 15021
        protocol: TCP
        targetPort: 15021
      - appProtocol: hbone
        name: mesh
        port: 15008
        protocol: TCP
        targetPort: 15008
      selector:
        gateway.networking.k8s.io/gateway-name: reviews
      sessionAffinity: None
      type: ClusterIP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-header-name.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-header-name
    spec:
      rules:
      - matches:
        - headers:
          - type: Exact
            name: magic/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 203 bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                            for (int i = 0; i < attributesSize; i++) {
                                String aname = parser.getAttributeName(i);
                                String avalue = parser.getAttributeValue(i);
                                attrs.put(aname, avalue);
                                spacePreserve = spacePreserve || ("xml:space".equals(aname) && "preserve".equals(avalue));
                            }
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/runtime/mklockrank.go

    			if !isPseudo(before) {
    				list = append(list, cname(before))
    			}
    		}
    		if cyclicRanks[rank] {
    			list = append(list, cname(rank))
    		}
    
    		fmt.Fprintf(w, "\t%s: {%s},\n", cname(rank), strings.Join(list, ", "))
    	}
    	fmt.Fprintf(w, "}\n")
    }
    
    // cname returns the Go const name for the given lock rank label.
    func cname(label string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    					}
    				}
    				t.Errorf("%s: got %s; want %s", mode, name, name[:len(name)-1])
    			} else if strings.Contains(name, ".") && !strings.HasSuffix(name, ".") { // "localhost.localdomain." not "localhost.localdomain"
    				t.Errorf("%s: got %s; want name ending with trailing dot", mode, name)
    			}
    		}
    	}
    }
    
    func TestLookupDotsWithRemoteSource(t *testing.T) {
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/archive/tar/reader_test.go

    	tw := NewWriter(&buf)
    	const name = "/foo"
    	tw.WriteHeader(&Header{
    		Name: name,
    	})
    	tw.Close()
    	tr := NewReader(&buf)
    	h, err := tr.Next()
    	if err != nil {
    		t.Fatalf("tr.Next with tarinsecurepath=1: got err %v, want nil", err)
    	}
    	if h.Name != name {
    		t.Fatalf("tr.Next with tarinsecurepath=1: got name %q, want %q", h.Name, name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/function.cc

      std::string fname;
      {
        const tensorflow::FunctionDef* fdef = nullptr;
        TF_RETURN_IF_ERROR(trace->GetFunctionDef(&fdef));
        fname = fdef->signature().name();
      }
      // TODO(srbs): Update RegisterFunction to accept AbstractFunctionPtr.
      TF_RETURN_IF_ERROR(ctx->RegisterFunction(trace.get()));
      auto cleanup = absl::MakeCleanup(
          [fname, ctx]() { ctx->RemoveFunction(fname).IgnoreError(); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/plugin/plugin_dlopen.go

    	if h == 0 {
    		pluginsMu.Unlock()
    		return nil, errors.New(`plugin.Open("` + name + `"): ` + C.GoString(cErr))
    	}
    	// TODO(crawshaw): look for plugin note, confirm it is a Go plugin
    	// and it was built with the correct toolchain.
    	if len(name) > 3 && name[len(name)-3:] == ".so" {
    		name = name[:len(name)-3]
    	}
    	if plugins == nil {
    		plugins = make(map[string]*Plugin)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top