Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 347 for JSpecify (0.1 sec)

  1. pilot/pkg/features/pilot.go

    	EnableAutoSni = env.Register("ENABLE_AUTO_SNI", true,
    		"If enabled, automatically set SNI when `DestinationRules` do not specify the same").Get()
    
    	VerifyCertAtClient = env.Register("VERIFY_CERTIFICATE_AT_CLIENT", true,
    		"If enabled, certificates received by the proxy will be verified against the OS CA certificate bundle.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

      // Convert model.
      if (enable_mlir_converter) {
        if (model_flags.use_hlo_import() && model_flags.has_saved_model_dir()) {
          PyErr_SetString(PyExc_ValueError,
                          "Cannot specify both saved_model and hlo import.");
          return nullptr;
        }
    
        if (model_flags.use_hlo_import()) {
          status = tensorflow::ConvertJaxToTFLiteFlatBuffer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    `J9`::
    Matches only virtual machine implementations using the OpenJ9/IBM J9 runtime engine.
    
    For example, to use an https://www.eclipse.org/openj9/[IBM] JVM, distributed via https://adoptopenjdk.net/[AdoptOpenJDK],
    you can specify the filter as shown in the example below.
    
    ====
    include::sample[dir="snippets/java/toolchain-filters/kotlin/",files="build.gradle.kts[tags=toolchain-matching-implementation]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options.go

    	if passedServiceClusterIPRange.IP == nil {
    		klog.Warningf("No CIDR for service cluster IPs specified. Default value which was %s is deprecated and will be removed in future releases. Please specify it using --service-cluster-ip-range on kube-apiserver.", kubeoptions.DefaultServiceIPCIDR.String())
    		serviceClusterIPRange = kubeoptions.DefaultServiceIPCIDR
    	}
    
    	size := min(netutil.RangeSize(&serviceClusterIPRange), 1<<16)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    	// kernel uses +2 for its own implementation of this function.
    	// I am scared that if we don't include the +2 here, the kernel
    	// will silently write 2 words farther than we specify
    	// and we'll get memory corruption.
    	var buf [CTL_MAXNAME + 2]_C_int
    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/custom-response.md

    }
    ```
    
    Of course, you will probably find much better ways to take advantage of this than formatting JSON. 😉
    
    ## Default response class
    
    When creating a **FastAPI** class instance or an `APIRouter` you can specify which response class to use by default.
    
    The parameter that defines this is `default_response_class`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/runtime/lockrank_on.go

    func lockInit(l *mutex, rank lockRank) {
    	l.rank = rank
    }
    
    func getLockRank(l *mutex) lockRank {
    	return l.rank
    }
    
    // lockWithRank is like lock(l), but allows the caller to specify a lock rank
    // when acquiring a non-static lock.
    //
    // Note that we need to be careful about stack splits:
    //
    // This function is not nosplit, thus it may split at function entry. This may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/wasm/convert.go

    	// checksum sent by istiod can be "nil" if not set by user - magic value used to avoid unmarshaling errors
    	if remote.Sha256 == "nil" {
    		remote.Sha256 = ""
    	}
    
    	// Default timeout, without this, if a user does not specify a timeout in the config, it fails with deadline exceeded
    	// while building transport in go container.
    	timeout := time.Second * 5
    	if remote.GetHttpUri().Timeout != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

        absl::flat_hash_set<std::string> xla_compile_and_run_allowed_devices_;
      } tf_xla_use_device_api;
    };
    
    // Flags for the XlaCallModule kernel.
    struct XlaCallModuleFlags {
      // Used by XlaCallModuleOp to specify safety checks to disable.
      absl::flat_hash_set<std::string> disabled_checks;
    };
    
    // Flags for the build_xla_ops pass.
    struct BuildXlaOpsPassFlags {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	},
    	ErrFilterNamePrefix: {
    		Code:           "InvalidArgument",
    		Description:    "Cannot specify more than one prefix rule in a filter.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameSuffix: {
    		Code:           "InvalidArgument",
    		Description:    "Cannot specify more than one suffix rule in a filter.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterValueInvalid: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top