Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 498 for realm (0.05 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    	assert.Nil(t, rsErr1, "Expected no error getting real servers")
    	assert.Len(t, realServers1, 0, "Expected 0 real servers")
    
    	realServers2, rsErr2 = ipvs.GetRealServers(externalIPServer)
    	assert.Nil(t, rsErr2, "Expected no error getting real servers")
    	assert.Len(t, realServers2, 0, "Expected 0 real servers")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        equates to quantization error when using quant_min and quant_max.
    
    
        Args:
          quant_min: The minimum real value that can be represented by a quantized
            value.
          quant_max: The maximum real value that can be represented by a quantized
            value.
    
        Returns:
          dequantized hist_mids after quantizing by quant_min and quant_max
        """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

            }
    
            @Provides
            ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher() {
                // Return a dummy implementation of this as creating a real hasher drags ~20 more services
                // along with it, and a hasher isn't actually needed on the worker process side at the moment.
                return new ClassLoaderHierarchyHasher() {
                    @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "posix_filesystem_impl",
        srcs = ["posix_filesystem.cc"],
        hdrs = ["posix_filesystem.h"],
        deps = [
            ":posix_filesystem_helper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

    tf_cc_shared_object(
        name = "gcs_filesystem",
        framework_so = [],
        linkstatic = False,
        per_os_targets = 1,
        visibility = ["//visibility:public"],
        deps = [":gcs_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "gcs_filesystem_impl",
        srcs = ["gcs_filesystem.cc"],
        hdrs = ["gcs_filesystem.h"],
        copts = select({
            "//conditions:default": [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorIntegrationTest.groovy

    import java.util.concurrent.Executors
    
    class DefaultJvmMetadataDetectorIntegrationTest extends AbstractIntegrationSpec {
    
        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "works on real installation"() {
            when:
            def detector = new DefaultJvmMetadataDetector(
                    () -> new DefaultExecHandleBuilder(TestFiles.pathToFileResolver(), Executors.newCachedThreadPool()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/templates/index.html

            </h3>
            {% autoescape false %}
            {{ serviceTable }}
            {% endautoescape %}
            <p>
                Click on one of the links below to auto generate a request to the backend as a real user or a tester
            </p>
            <ul>
                <li>
                    <a href="/productpage?u=normal" class="text-blue-500 hover:text-blue-600">Normal user</a>
                </li>
                <li>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/volume/util/selinux.go

    	// or don't support SELinux at all.
    	SELinuxOptionsToFileLabel(opts *v1.SELinuxOptions) (string, error)
    
    	// SELinuxEnabled returns true when the OS has enabled SELinux support.
    	SELinuxEnabled() bool
    }
    
    // Real implementation of the interface.
    // On Linux with SELinux enabled it translates. Otherwise it always returns an empty string and no error.
    type translator struct{}
    
    var _ SELinuxLabelTranslator = &translator{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    func (f fakeFile) Mode() fs.FileMode  { return f.real.Mode() }
    func (f fakeFile) ModTime() time.Time { return f.real.ModTime() }
    func (f fakeFile) IsDir() bool        { return f.real.IsDir() }
    func (f fakeFile) Sys() any           { return f.real.Sys() }
    
    func (f fakeFile) String() string {
    	return fs.FormatFileInfo(f)
    }
    
    // missingFile provides an fs.FileInfo for an overlaid file where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/plugins.go

    	admit.Register(plugins) // DEPRECATED as no real meaning
    	alwayspullimages.Register(plugins)
    	antiaffinity.Register(plugins)
    	defaulttolerationseconds.Register(plugins)
    	defaultingressclass.Register(plugins)
    	denyserviceexternalips.Register(plugins)
    	deny.Register(plugins) // DEPRECATED as no real meaning
    	eventratelimit.Register(plugins)
    	extendedresourcetoleration.Register(plugins)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top