Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for Missing (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      AddNodeAttr("shape", it->second.shape, node);
      return absl::OkStatus();
    }
    
    // Preprocesses GraphDef before it can be converted to Graph by,
    // - Adding the default attributes to each node def if they are missing from
    //   the GraphDef.
    // - Replacing LegacyFedInput nodes with Placeholder nodes if
    //   convert_legacy_fed_inputs option is enabled.
    Status PreprocessGraphDef(const GraphImportConfig* specs, GraphDef* graph_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics --tf-tpu-rewrite=tpu-compile-metadata-debug | FILECHECK_OPTS="" FileCheck %s
    
    // Tests module with missing `tf.versions` attribute.
    
    // expected-error@+1 {{requires attribute 'tf.versions'}}
    module attributes {tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      func.func @missing_tf_versions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    		leaf:        googleLeaf,
    		roots:       []string{gtsRoot},
    		currentTime: 1677615892,
    		dnsName:     "www.google.com",
    
    		// Skip when using systemVerify, since Windows
    		// *will* find the missing intermediate cert.
    		systemSkip:    true,
    		errorCallback: expectAuthorityUnknown,
    	},
    	{
    		name:          "RootInIntermediates",
    		leaf:          googleLeaf,
    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/link/internal/ld/data.go

    				rs, off := FoldSubSymbolOffset(ldr, rs)
    				xadd := r.Add() + off
    				rst := ldr.SymType(rs)
    				if rst != sym.SHOSTOBJ && rst != sym.SDYNIMPORT && rst != sym.SUNDEFEXT && ldr.SymSect(rs) == nil {
    					st.err.Errorf(s, "missing section for relocation target %s", ldr.SymName(rs))
    				}
    
    				o = xadd
    				if target.IsElf() {
    					if target.IsAMD64() {
    						o = 0
    					}
    				} else if target.IsDarwin() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		expectedNodes           []*v1.Node
    		expectedPodStatusUpdate bool
    	}{
    		// Node created recently, without status. Node lease is missing.
    		// Expect no action from node controller (within startup grace period).
    		{
    			description: "Node created recently, without status. Node lease is missing.",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            'file' | FileType.Directory   | 'output file .*directory must be a file, but is not'
            'file' | FileType.Missing     | 'output .*this_file_does_not.exist must exist'
            'dir'  | FileType.RegularFile | 'output directory .*file must be a directory, but is not'
            'dir'  | FileType.Missing     | 'output .*this_file_does_not.exist must exist'
        }
    
        def "directories are created for outputs in the workspace"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    `),
    			TwoWay: []byte(`
    $setElementOrder/mergingIntList:
      - 1
      - 2
      - 3
    mergingIntList:
      - 3
      - 1
    `),
    			ExpectedError: "doesn't match",
    		},
    	},
    	{
    		Description: "missing merge key should error out",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    mergingList:
      - name: 1
        value: a
    `),
    			TwoWay: []byte(`
    mergingList:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // See https://golang.org/ref/mod#go-mod-init for more about 'go mod init'.
    //
    // # Add missing and remove unused modules
    //
    // Usage:
    //
    //	go mod tidy [-e] [-v] [-x] [-diff] [-go=version] [-compat=version]
    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	if iscgo {
    		if _cgo_pthread_key_created == nil {
    			throw("_cgo_pthread_key_created missing")
    		}
    
    		if _cgo_thread_start == nil {
    			throw("_cgo_thread_start missing")
    		}
    		if GOOS != "windows" {
    			if _cgo_setenv == nil {
    				throw("_cgo_setenv missing")
    			}
    			if _cgo_unsetenv == nil {
    				throw("_cgo_unsetenv missing")
    			}
    		}
    		if _cgo_notify_runtime_init_done == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      return rewriter.create<arith::ConstantOp>(value.getLoc(), attr_type, attr);
    }
    
    bool IsSign(APInt a, APInt sign) {
      if (a.isZero()) return a == sign;
      if (a.isNegative()) return sign == -1;
      return sign == 1;
    }
    
    bool IsSign(APFloat a, APFloat sign) {
      if (a.isNaN() || a.isZero()) return a == sign;
      if (a.isNegative()) return sign.isExactlyValue(-1.0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top