Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 338 for convenient (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/common/test_base.h

      OwningOpRef<ModuleOp> ParseModuleOpString(
          const absl::string_view module_op_str) {
        return parseSourceString<ModuleOp>(module_op_str, ctx_.get());
      }
    
      // Convenience function that returns the first operation of type `OpT` from
      // the `@main` function in `module_op`. Useful when testing with a text
      // representation of a `ModuleOp` containing a single function `@main`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/go/parser/interface.go

    				}
    				pkgs[name] = pkg
    			}
    			pkg.Files[filename] = src
    		} else if first == nil {
    			first = err
    		}
    	}
    
    	return
    }
    
    // ParseExprFrom is a convenience function for parsing an expression.
    // The arguments have the same meaning as for [ParseFile], but the source must
    // be a valid Go (type or value) expression. Specifically, fset must not
    // be nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshotBuilder.java

     * When leaving a directory, the builder will create a {@link DirectorySnapshot} for the directory,
     * calculating the combined hash of the entries.
     */
    public interface DirectorySnapshotBuilder {
    
        /**
         * Convenience method for {@link #enterDirectory(FileMetadata.AccessType, String, String, EmptyDirectoryHandlingStrategy)}
         * when you already have a {@link DirectorySnapshot}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // Returns whether a given QuantizationSpecs has the given quantization method.
    bool HasQuantizationMethod(const QuantizationSpecs& specs,
                               Method::MethodCase method_case);
    
    // Convenience function for converting the optional `report_file_path` field to
    // `std::optional<absl::string_view>`, where `std::nullopt` represents that the
    // field is not explicitly set. The returned value is a reference type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/response-headers.md

        You could also use `from starlette.responses import Response` or `from starlette.responses import JSONResponse`.
    
        **FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette.
    
        And as the `Response` can be used frequently to set headers and cookies, **FastAPI** also provides it at `fastapi.Response`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultSetProperty.java

        private static final SerializableSupplier<ImmutableCollection.Builder<Object>> FACTORY = ImmutableSet::builder;
    
        /**
         * Convenience method to add a possibly-missing provider to a set property without clearing the set.
         *
         * @param set the set property to add to
         * @param provider the provider to add
         * @param <T> the type of the set elements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:58:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/language/base/sources/BaseLanguageSourceSet.java

     */
    @Incubating
    public class BaseLanguageSourceSet extends AbstractLanguageSourceSet {
        /**
         * This is here as a convenience for subclasses to create additional SourceDirectorySets
         *
         * @since 5.0
         */
        protected final ObjectFactory objectFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

    public interface ProjectConnection extends Closeable {
        /**
         * Fetches a snapshot of the model of the given type for this project. This method blocks until the model is available.
         *
         * <p>This method is simply a convenience for calling {@code model(modelType).get()}</p>
         *
         * @param modelType The model type.
         * @param <T> The model type.
         * @return The model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/all.go

    )
    
    // All returns all analyzers
    func All() []analysis.Analyzer {
    	analyzers := []analysis.Analyzer{
    		// Please keep this list sorted alphabetically by pkg.name for convenience
    		&annotations.K8sAnalyzer{},
    		&authz.AuthorizationPoliciesAnalyzer{},
    		&deployment.ServiceAssociationAnalyzer{},
    		&deployment.ApplicationUIDAnalyzer{},
    		&deprecation.FieldAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/kube/krt/helpers.go

    	// Allow flattening
    	ao, ok := any(&a).(controllers.Object)
    	if ok {
    		k, _ := cache.MetaNamespaceKeyFunc(ao)
    		return Key[O](k)
    	}
    	panic(fmt.Sprintf("Cannot get Key, got %T", a))
    }
    
    // Named is a convenience struct. It is ideal to be embedded into a type that has a name and namespace,
    // and will automatically implement the various interfaces to return the name, namespace, and a key based on these two.
    type Named struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top