Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Importer (0.18 sec)

  1. src/go/types/api_test.go

    			Importer: importer.For(compiler, nil),
    		}
    
    		info := &Info{
    			Uses: make(map[*ast.Ident]Object),
    		}
    		pkg, _ := conf.Check("p", fset, files, info)
    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    			//Importer: importer.For(compiler, nil),
    		}
    
    		info := &Info{
    			Uses: make(map[*syntax.Name]Object),
    		}
    		pkg, _ := conf.Check("p", files, info)
    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    		}
    
    		imports := pkg.Imports()
    		if len(imports) != 1 {
    			t.Errorf("for %s importer, got %d imports, want 1", compiler, len(imports))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    		if pkg.err == nil {
    			continue
    		}
    
    		// Add importer information to checksum errors.
    		if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
    			if importer := pkg.stack; importer != nil {
    				sumErr.importer = importer.path
    				sumErr.importerVersion = importer.mod.Version
    				sumErr.importerIsTest = importer.testOf != nil
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    }
    
    // Create the MLIR Location corresponding to a given op. This is an
    // experimental/debugging feature and production code should not rely on names
    // of intermediate tensors since importer doesn't guarantee to preserve tensor
    // names except output tensors.
    Location OpLoc(const OperatorT& op,
                   const std::vector<std::unique_ptr<tflite::TensorT>>& tensors,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. src/go/build/build.go

    					goto Found
    				}
    			}
    		}
    
    		// Determine directory from import path.
    		if ctxt.GOROOT != "" {
    			// If the package path starts with "vendor/", only search GOROOT before
    			// GOPATH if the importer is also within GOROOT. That way, if the user has
    			// vendored in a package that is subsequently included in the standard
    			// distribution, they'll continue to pick up their own vendored copy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
        /** Explicitly imported by Kotlin default. For example, `kotlin.String`. */
        DEFAULT_EXPLICIT,
    
        /** Star imported (star import) by user. */
        STAR,
    
        /** Star imported (star import) by Kotlin default. */
        DEFAULT_STAR;
    
        fun hasHigherPriorityThan(that: ImportKind): Boolean = this < that
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    			expected: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported but we include it anyway
    				"alt-known.default.svc.cluster.local": {"outbound|80||example.com"},
    			},
    			expectedGateway: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top