Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for mypair (0.12 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.get(fileName);
        }
    
        @SuppressWarnings("unchecked")
        public Pair<String, String>[] getDesignJspFileNames() {
            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. pkg/controlplane/instance.go

    	// KubeAPIServer defines variable used internally when referring to kube-apiserver component
    	KubeAPIServer = "kube-apiserver"
    	// repairLoopInterval defines the interval used to run the Services ClusterIP and NodePort repair loops
    	repairLoopInterval = 3 * time.Minute
    )
    
    // Extra defines extra configuration for kube-apiserver
    type Extra struct {
    	EndpointReconcilerConfig EndpointReconcilerConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		FieldNameByteString: cbor.FieldNameByteStringAllowed,
    
    		// When decoding an unrecognized tag to interface{}, return the decoded tag content
    		// instead of the default, a cbor.Tag representing a (number, content) pair.
    		UnrecognizedTagToAny: cbor.UnrecognizedTagContentToAny,
    
    		// For parity with JSON, strings can be decoded into time.Time if they are RFC 3339
    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device.cc

      XlaDeviceAllocatorState();
      ~XlaDeviceAllocatorState();
    
      mutex allocator_mutex_;  // Guards the singleton allocator state.
      std::unordered_map<std::pair<const xla::Backend*, int>,
                         std::unique_ptr<XlaDeviceAllocator>,
                         hash<std::pair<const xla::Backend*, int>>>
          allocators_ TF_GUARDED_BY(allocator_mutex_);
    
      XlaDeviceAllocatorState(const XlaDeviceAllocatorState&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    }
    
    type FakeVolumePathHandler struct {
    	sync.RWMutex
    }
    
    func (fv *FakeVolumePathHandler) MapDevice(devicePath string, mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    func (fv *FakeVolumePathHandler) UnmapDevice(mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	if len(newContent.servingCert.cert) > 0 && len(newContent.servingCert.key) > 0 {
    		cert, err := tls.X509KeyPair(newContent.servingCert.cert, newContent.servingCert.key)
    		if err != nil {
    			return fmt.Errorf("invalid serving cert keypair: %v", err)
    		}
    
    		x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
    		if err != nil {
    			return fmt.Errorf("invalid serving cert: %v", err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    	}
    	// Because all ReplicaSet's belonging to a deployment should have a unique label key,
    	// there should never be more than one deployment returned by the above method.
    	// If that happens we should probably dynamically repair the situation by ultimately
    	// trying to clean up one of the controllers, for now we just return the older one
    	if len(deployments) > 1 {
    		// ControllerRef will ensure we don't do anything crazy, but more than one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

        }
        if (!matchPattern(max, m_Constant(&max_value))) {
          return false;
        }
        return true;  // Successfully matched and fetched.
      }
    };
    
    // Inserts a "tfl.quantize" and "tfl.dequantize" op pair (QDQs) after the
    // tf.FakeQyantWithMinMax{Vars|VarsPerChannel|Args}Op
    // before the op being constant folded. Since the constant
    // folding logic will use a "arith.constant" op to replace the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_CLASSES
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    using ResourceIdMap =
        absl::flat_hash_map<std::pair<std::string, std::string>, int>;
    
    using ResourceMap = absl::flat_hash_map<int, std::vector<VarHandleOp>>;
    
    Type GetQuantizedTypeFromReadVariableOp(VarHandleOp var_handle_op) {
      Type ref_qtype = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 !~ "X86_CR3_PCID_NOFLUSH" &&
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    		$2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||
    		$2 == "BRKINT" ||
    		$2 == "HUPCL" ||
    		$2 == "PENDIN" ||
    		$2 == "TOSTOP" ||
    		$2 == "XCASE" ||
    		$2 == "ALTWERASE" ||
    		$2 == "NOKERNINFO" ||
    		$2 == "NFDBITS" ||
    		$2 ~ /^PAR/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top