Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for Importer (0.58 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    		file_workloadapi_workload_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*Address); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_workloadapi_workload_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

        TF_ImportGraphDefOptions* opts, unsigned char uniquify_prefix);
    
    // Set any imported nodes with input `src_name:src_index` to have that input
    // replaced with `dst`. `src_name` refers to a node in the graph to be imported,
    // `dst` references a node already existing in the graph being imported into.
    // `src_name` is copied and has no lifetime requirements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

          Remove-Item -Force -Recurse $install_dir
      }
    
      # Download Logging exporter if needed
      if (ShouldWrite-File $LOGGINGEXPORTER_ROOT\flb-exporter.exe) {
          $url = ("https://storage.googleapis.com/gke-release/winnode/fluentbit-exporter/${LOGGINGEXPORTER_VERSION}/flb-exporter-${LOGGINGEXPORTER_VERSION}.exe")
          Log-Output 'Downloading logging exporter'
          New-Item $LOGGINGEXPORTER_ROOT -ItemType 'directory' -Force | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_ImportGraphDefOptionsSetPrefix(opts, "imported");
      TF_GraphImportGraphDef(graph, graph_def, opts, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* scalar = TF_GraphOperationByName(graph, "imported/scalar");
      TF_Operation* feed = TF_GraphOperationByName(graph, "imported/feed");
      TF_Operation* neg = TF_GraphOperationByName(graph, "imported/neg");
      ASSERT_TRUE(scalar != nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    			Xsmclas:  XMC_DS,
    			Xsmtyp:   XTY_ER | XTY_IMP,
    		}
    
    		if ldr.SymName(x) == "__n_pthreads" {
    			// Currently, all imported symbols made by cgo_import_dynamic are
    			// syscall functions, except __n_pthreads which is a variable.
    			// TODO(aix): Find a way to detect variables imported by cgo.
    			a4.Xsmclas = XMC_RW
    		}
    
    		syms = append(syms, a4)
    
    	case TLSSym:
    		s := &XcoffSymEnt64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            String name = type.getName();
    
            // check module node imports aliases
            // the while loop enables a check for inner classes which are not fully imported,
            // but visible as the surrounding class is imported and the inner class is public/protected static
            String pname;
            int index = name.length();
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // output file and return a non-zero error code.
    func (reporter *ErrorReporter) Errorf(s Sym, format string, args ...interface{}) {
    	if s != 0 && reporter.ldr.SymName(s) != "" {
    		// Note: Replace is needed here because symbol names might have % in them,
    		// due to the use of LinkString for names of instantiating types.
    		format = strings.Replace(reporter.ldr.SymName(s), "%", "%%", -1) + ": " + format
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    gpg: key 379CE192D401AB61: public key "Bintray (by JFrog) <****>" imported
    gpg: Total number processed: 1
    gpg:               imported: 1
    
    $ gpg --no-default-keyring --keyring gradle/verification-keyring.gpg --recv-keys 6f538074ccebf35f28af9b066a0975f8b1127b83
    
    gpg: key 0729A0AFF8999A87: public key "Kotlin Release <****>" imported
    gpg: Total number processed: 1
    gpg:               imported: 1
    ----
    
    [[sec:troubleshooting-verification]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	UsageLine: "vcs",
    	Short:     "controlling version control with GOVCS",
    	Long: `
    The 'go get' command can run version control commands like git
    to download imported code. This functionality is critical to the decentralized
    Go package ecosystem, in which code can be imported from any server,
    but it is also a potential security problem, if a malicious server finds a
    way to cause the invoked version control command to run unintended code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top