Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for importing (0.28 sec)

  1. src/cmd/go/internal/load/pkg.go

    		setError(ImportErrorf(p.ImportPath, "invalid import path %q", p.ImportPath))
    		return
    	}
    
    	// Errors after this point are caused by this package, not the importing
    	// package. Pushing the path here prevents us from reporting the error
    	// with the position of the import declaration.
    	stk.Push(path)
    	defer stk.Pop()
    
    	pkgPath := p.ImportPath
    	if p.Internal.CmdlineFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            function_name_uniquifier_(function_name_uniquifier),
            error_handler_(module.getContext()) {
        // Log import config.
        if (VLOG_IS_ON(1)) {
          LOG(INFO) << "Importing with: " << specs.str();
          for (auto& it : *tf_name_to_mlir_name) {
            LOG(INFO) << "\t" << it.first << " -> " << it.second;
          }
        }
    
        stack_traces_ = LoadTracesFromDebugInfo(debug_info_);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    ImportPath       = string_lit .
    </pre>
    
    <p>
    The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a>
    to access exported identifiers of the package within the importing source file.
    It is declared in the <a href="#Blocks">file block</a>.
    If the PackageName is omitted, it defaults to the identifier specified in the
    <a href="#Package_clause">package clause</a> of the imported package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        data_gen = self._create_data_generator(
            input_key='input', shape=input_placeholder.shape
        )
    
        # StatusNotOk error. `Exception` is used here because importing
        # `StatusNotOk` may break the open-sourced version of TensorFlow.
        with self.assertRaisesRegex(
            Exception,
            'could not be found in SavedModel, with available tags',
        ) as raises:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	importcfg := a.Objdir + "importcfg.link"
    	if err := b.writeLinkImportcfg(a, importcfg); err != nil {
    		return err
    	}
    
    	// TODO(rsc): There is a missing updateBuildID here,
    	// but we have to decide where to store the build ID in these files.
    	a.built = a.Target
    	return BuildToolchain.ldShared(b, a, a.Deps[0].Deps, a.Target, importcfg, a.Deps)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <description>The group ID of the reporting plugin in the repository.</description>
            </field>
            <field>
              <name>artifactId</name>
              <version>4.0.0+</version>
              <type>String</type>
              <required>true</required>
              <description>The artifact ID of the reporting plugin in the repository.</description>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	// move the clock past transition period to ensure that we stop reporting pressure
    	fakeClock.Step(5 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

      status->status = tensorflow::errors::Unimplemented(
          "Creating while loops is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
      return EmptyWhileParams();
    #else
      if (ninputs == 0) {
        status->status =
            InvalidArgument("TF_NewWhile() must be passed at least one input");
        return EmptyWhileParams();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// doesn't free mp while we are still using it.
    	//
    	// Note that the free list must not be linked through alllink because
    	// some functions walk allm without locking, so may be using alllink.
    	//
    	// N.B. It's important that the M appears on the free list simultaneously
    	// with it being removed so that the tracer can find it.
    	mp.freeWait.Store(freeMWait)
    	mp.freelink = sched.freem
    	sched.freem = mp
    	unlock(&sched.lock)
    
    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. src/database/sql/sql_test.go

    		Deadline() (time.Time, bool)
    	}
    	if td, ok := t.(deadliner); ok {
    		if deadline, ok := td.Deadline(); ok {
    			timeout = time.Until(deadline)
    			timeout = timeout * 19 / 20 // Give 5% headroom for cleanup and error-reporting.
    		}
    	}
    
    	deadline := time.Now().Add(timeout)
    	for {
    		if fn() {
    			return true
    		}
    		if time.Until(deadline) < pollDuration {
    			return false
    		}
    		time.Sleep(pollDuration)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top