Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 545 for Imported (0.4 sec)

  1. src/go/types/named.go

    	for n := range seen {
    		// We should never have to update the underlying type of an imported type;
    		// those underlying types should have been resolved during the import.
    		// Also, doing so would lead to a race condition (was go.dev/issue/31749).
    		// Do this check always, not just in debug mode (it's cheap).
    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    					}
    					goto Error
    				}
    				if !exp.Exported() {
    					check.errorf(e.Sel, UnexportedName, "name %s not exported by package %s", sel, pkg.name)
    					// ok to continue
    				}
    			}
    			check.recordUse(e.Sel, exp)
    
    			// Simplified version of the code for *syntax.Names:
    			// - imported objects are always fully initialized
    			switch exp := exp.(type) {
    			case *Const:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/go/types/call.go

    					}
    					goto Error
    				}
    				if !exp.Exported() {
    					check.errorf(e.Sel, UnexportedName, "name %s not exported by package %s", sel, pkg.name)
    					// ok to continue
    				}
    			}
    			check.recordUse(e.Sel, exp)
    
    			// Simplified version of the code for *ast.Idents:
    			// - imported objects are always fully initialized
    			switch exp := exp.(type) {
    			case *Const:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    // The ODCLFUNC node (the Func itself) is used for its declaration code.
    // The OCLOSURE node (Func.OClosure) is used for a reference to a
    // function literal.
    //
    // An imported function will have an ONAME node which points to a Func
    // with an empty body.
    // A declared function or method has an ODCLFUNC (the Func itself) and an ONAME.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

            custom_legalization_passes = {},
        llvm::StringRef module_name = llvm::StringRef(),
        bool lower_to_xla_hlo = true);
    
    // Compiles a TensorFlow Graph (already converted to MLIR, imported with
    // tf_executor dialect still present) into XLA HLO, generates all accompanying
    // metadata and stores them in CompilationResult. This will rewrite arguments
    // and run the TensorFlow standard pipeline prior to invoking
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/Quantiles.java

     * double myMedian = median().compute(myDataset);
     * }</pre>
     *
     * where {@link #median()} has been statically imported.
     *
     * <p>To compute the 99th percentile:
     *
     * <pre>{@code
     * double myPercentile99 = percentiles().index(99).compute(myDataset);
     * }</pre>
     *
     * where {@link #percentiles()} has been statically imported.
     *
     * <p>To compute median and the 90th and 99th percentiles:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// UndeclaredImportedName occurs when a package-qualified identifier is
    	// undeclared by the imported package.
    	//
    	// Example:
    	//  import "go/types"
    	//
    	//  var _ = types.NotAnActualIdentifier
    	UndeclaredImportedName
    
    	// UnexportedName occurs when a selector refers to an unexported identifier
    	// of an imported package.
    	//
    	// Example:
    	//  import "reflect"
    	//
    	//  type _ reflect.flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/internal/types/errors/codes.go

    	// UndeclaredImportedName occurs when a package-qualified identifier is
    	// undeclared by the imported package.
    	//
    	// Example:
    	//  import "go/types"
    	//
    	//  var _ = types.NotAnActualIdentifier
    	UndeclaredImportedName
    
    	// UnexportedName occurs when a selector refers to an unexported identifier
    	// of an imported package.
    	//
    	// Example:
    	//  import "reflect"
    	//
    	//  type _ reflect.flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Or do you want to move to something that is more idiomatic to Gradle?
    What are the main benefits you are looking for?
    
    To better understand, consider the following opposing scenarios:
    
     * An imported build via <<ant#sec:import_ant_build,`ant.importBuild()`>>
    +
    This approach is quick, simple, and works for many Ant-based builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/go/doc/doc.go

    }
    
    // lookupPackage returns the import path identified by name
    // in the given package. If name uniquely identifies a single import,
    // then lookupPackage returns that import.
    // If multiple packages are imported as name, importPath returns "", false.
    // Otherwise, if name is the name of p itself, importPath returns "", true,
    // to signal a reference to p.
    // Otherwise, importPath returns "", false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top