Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 829 for regular (0.29 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                on { getByName(eq("alice"), any<Action<DomainObject>>()) } doReturn alice
                on { create(eq("bob"), any<Action<DomainObject>>()) } doReturn bob
            }
    
            // regular syntax
            container.getByName("alice") {
                foo = "alice-foo"
            }
            container.create("bob") {
                foo = "bob-foo"
            }
            container.maybeCreate("john")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RootTrackingFileSystemSnapshotHierarchyVisitor.java

        /**
         * Called before visiting the contents of a directory.
         */
        public void enterDirectory(DirectorySnapshot directorySnapshot, boolean isRoot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. fastapi/background.py

            self,
            func: Annotated[
                Callable[P, Any],
                Doc(
                    """
                    The function to call after the response is sent.
    
                    It can be a regular `def` function or an `async def` function.
                    """
                ),
            ],
            *args: P.args,
            **kwargs: P.kwargs,
        ) -> None:
            """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting.h

    #include "absl/strings/string_view.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    // Creates a FingerprintDef proto from a SavedModel (regular or chunked) and the
    // checkpoint meta file (.index) in `export_dir`.
    absl::StatusOr<FingerprintDef> CreateFingerprintDef(
        absl::string_view export_dir);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 19:55:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. docs/extensions/fan-out/README.md

    ## How to enable Fan-Out Uploads ?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace mlir::quant {
    
    // Converts arguments of the @main function that are bound to
    // `tf_saved_model::AssetOp`s into regular tensor args. Returns `AsestFileDef`s
    // that associates the arg with the asset.
    //
    // In detail, this function performs the following:
    // * Replaces "tf_saved_model.bound_input" attributes to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 01:45:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    import (
    	"fmt"
    	"runtime"
    	"strings"
    	"sync"
    )
    
    // On the disk, and upstream, stack counters look like sets of
    // regular counters with names that include newlines.
    
    // a StackCounter is the in-memory knowledge about a stack counter.
    // StackCounters are more expensive to use than regular Counters,
    // requiring, at a minimum, a call to runtime.Callers.
    type StackCounter struct {
    	name  string
    	depth int
    	file  *file
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

            outputContains("project name = root")
            outputContains("project name = a")
            outputContains("project name = b")
    
            where:
            functionType | modifier  | owner
            "regular"    | ""        | "new Helper()"
            "static"     | "static " | "Helper"
        }
    
        @ToBeImplemented
        def "lifecycle actions in Kotlin DSL allow using top-level build script function"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/go/doc/testdata/generics.go

    }
    
    // Func has an instantiated constraint.
    func Func[T Constraint[string, Type[int]]]() {}
    
    // AnotherFunc has an implicit constraint interface.
    //
    // Neither type parameters nor regular parameters should be filtered.
    func AnotherFunc[T ~struct{ f int }](_ struct{ f int }) {}
    
    // AFuncType demonstrates filtering of parameters and type parameters. Here we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/runtime/internal/sys/nih.go

    //
    // Specifically:
    //
    // 1. `new(T)`, `make([]T)`, `append([]T, ...)` and implicit heap
    // allocation of T are disallowed. (Though implicit allocations are
    // disallowed in the runtime anyway.)
    //
    // 2. A pointer to a regular type (other than `unsafe.Pointer`) cannot be
    // converted to a pointer to a not-in-heap type, even if they have the
    // same underlying type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top