Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 996 for Preferred (0.15 sec)

  1. src/main/java/jcifs/smb/SSPContext.java

         * @return whether the specified mechanism is supported
         */
        boolean isSupported ( ASN1ObjectIdentifier mechanism );
    
    
        /**
         * @param selectedMech
         * @return whether the specified mechanism is preferred
         */
        boolean isPreferredMech ( ASN1ObjectIdentifier selectedMech );
    
    
        /**
         * @return context flags
         */
        int getFlags ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.h

    class SaveQuantizationReportInstrumentation : public PassInstrumentation {
     public:
      // `file_path` is the path to save the report file. The report file is in
      // textproto format so a `.txtpb` extension is preferred but it doesn't result
      // in error if other extension is used. This instrumentation will not be run
      // if `file_path` is a `nullopt`.
      explicit SaveQuantizationReportInstrumentation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
        fun ConfigurationContainer.forceUpgrade(to: String, version: String) = all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

                }
                if (version.requires != null) {
                    write("requires", version.requires);
                }
                if (version.preferred != null) {
                    write("prefers", version.preferred);
                }
                if (!version.rejectedVersions.isEmpty()) {
                    writeArray("rejects", version.rejectedVersions);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options.go

    		"Example: '30000-32767'. Inclusive at both ends of the range.")
    
    	// Kubelet related flags:
    	fs.StringSliceVar(&s.KubeletConfig.PreferredAddressTypes, "kubelet-preferred-address-types", s.KubeletConfig.PreferredAddressTypes,
    		"List of the preferred NodeAddressTypes to use for kubelet connections.")
    
    	fs.UintVar(&s.KubeletConfig.Port, "kubelet-port", s.KubeletConfig.Port,
    		"DEPRECATED: kubelet port.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/erasure-decode.go

    	}
    }
    
    // preferReaders can mark readers as preferred.
    // These will be chosen before others.
    func (p *parallelReader) preferReaders(prefer []bool) {
    	if len(prefer) != len(p.orgReaders) {
    		return
    	}
    	// Copy so we don't change our input.
    	tmp := make([]io.ReaderAt, len(p.orgReaders))
    	copy(tmp, p.orgReaders)
    	p.readers = tmp
    	// next is the next non-preferred index.
    	next := 0
    	for i, ok := range prefer {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

        def factory = new InetAddressFactory()
        InetAddresses addresses = Mock()
    
        def setup() {
            factory.inetAddresses = addresses
        }
    
        def "Loopback addresses are preferred"() {
            when:
            def loopback = [ip(127, 0, 0, 1)]
            loopbackAddresses(loopback)
            remoteAddresses([ip(192, 168, 17, 256)])
    
            then:
            factory.communicationAddresses == loopback
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tac_importer_exporter.h

      virtual absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> Import() = 0;
    };
    
    // Interface for exporting a module.
    // Users should implement the interface for exporting the result from TAC
    // in their preferred way.
    // See TacModule in how to register it with the module and use it.
    class TacExporter {
     public:
      virtual ~TacExporter() = default;
    
      // Imports and returns the Module for the imported program.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. pilot/pkg/features/ambient.go

    	// Not required for ambient, so disabled by default
    	PreferHBONESend = registerAmbient(
    		"PILOT_PREFER_SENDING_HBONE",
    		false, false,
    		"If enabled, HBONE will be preferred when sending to destinations. ")
    
    	DefaultAllowFromWaypoint = registerAmbient(
    		"PILOT_AUTO_ALLOW_WAYPOINT_POLICY",
    		false, false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top