Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 912 for regular (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    // Informer/Lister classes are thin wrappers providing a type-safe interface
    // over regular interface{}-based Informers/Listers
    //
    // Controller[T] provides a reusable way to reconcile objects out of an informer
    // using the tried and true controller design pattern found all over k8s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/20398")
        def "falls back to full file hash when abi extraction fails for a regular file"() {
            def apiClassExtractor = Mock(ApiClassExtractor)
    
            def resourceHasher = AbiExtractingClasspathResourceHasher.withFallback(apiClassExtractor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. staging/src/k8s.io/cli-runtime/pkg/printers/sourcechecker.go

    limitations under the License.
    */
    
    package printers
    
    import (
    	"strings"
    )
    
    var (
    	InternalObjectPrinterErr = "a versioned object must be passed to a printer"
    
    	// disallowedPackagePrefixes contains regular expression templates
    	// for object package paths that are not allowed by printers.
    	disallowedPackagePrefixes = []string{
    		"k8s.io/kubernetes/pkg/apis/",
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  8. 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 (1)
  9. 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)
  10. 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)
Back to top